Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cppcheck fixes #47

Merged
merged 3 commits into from
Dec 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![GitHub release](https://img.shields.io/github/release/barrust/c-utils.svg)](https://github.com/barrust/c-utils/releases)
[![Build Status](https://travis-ci.org/barrust/c-utils.svg?branch=master)](https://travis-ci.org/barrust/c-utils)
[![Build Status](https://github.com/barrust/c-utils/workflows/C/C++%20CI/badge.svg)](https://github.com/barrust/c-utils/actions)
[![codecov](https://codecov.io/gh/barrust/c-utils/branch/master/graph/badge.svg)](https://codecov.io/gh/barrust/c-utils)



This project provides a collection of utility libraries to help reduce the need to write similar code for each project on an ad-hoc basis. The need is based on what I have needed in most projects but are ended up written, as needed, and usually differently each time and without unit tests. The goal is to provide a single place to store each of these libraries and to provide unit tests.

If there are other commonly used code or data-structures that should be added, please add a feature request!
Expand Down
2 changes: 2 additions & 0 deletions src/fileutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,8 @@ static char** __str_split_string_any(char* s, const char* s2, size_t* num) {
*num = cnt;

char** v = (char**)realloc(results, cnt * sizeof(char*));
if (v == NULL)
return results;
return v;
}

Expand Down
6 changes: 6 additions & 0 deletions src/stringlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,8 @@ char** s_split_string_c(const char* s, const char c, int* num) {
*num = cnt;

char** v = (char**)realloc(results, cnt * sizeof(char*));
if (v == NULL)
return results;
return v;
}

Expand Down Expand Up @@ -511,6 +513,8 @@ char** s_split_string_str(const char* s, const char* sub, int* num) {
*num = cnt;

char** v = (char**)realloc(results, cnt * sizeof(char*));
if (v == NULL)
return results;
return v;
}

Expand Down Expand Up @@ -545,6 +549,8 @@ char** s_split_string_any(const char* s, const char* s2, int* num) {
*num = cnt;

char** v = (char**)realloc(results, cnt * sizeof(char*));
if (v == NULL)
return results;
return v;
}

Expand Down