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 errors for realloc() usage #92

Open
scovetta opened this issue Apr 12, 2017 · 0 comments
Open

CppCheck errors for realloc() usage #92

scovetta opened this issue Apr 12, 2017 · 0 comments

Comments

@scovetta
Copy link

I'd like to report that CppCheck is reporting issues with a few of the C/C++ files' use of realloc without testing to ensure the result isn't NULL, resulting in possible memory leaks.

You can gather results by running:

cppcheck --quiet /path/to/libsvm

[/src/libsvm/matlab/libsvmread.c:48]: (error) Common realloc mistake: 'line' nulled but not freed upon failure
[/src/libsvm/svm-predict.c:31]: (error) Common realloc mistake: 'line' nulled but not freed upon failure
[/src/libsvm/svm-predict.c:96]: (error) Common realloc mistake: 'x' nulled but not freed upon failure
[/src/libsvm/svm-scale.c:342]: (error) Common realloc mistake: 'line' nulled but not freed upon failure
[/src/libsvm/svm-train.c:75]: (error) Common realloc mistake: 'line' nulled but not freed upon failure
[/src/libsvm/svm.cpp:2042]: (error) Common realloc mistake: 'label' nulled but not freed upon failure
[src/libsvm/svm.cpp:2043]: (error) Common realloc mistake: 'count' nulled but not freed upon failure
[/src/libsvm/svm.cpp:2757]: (error) Common realloc mistake: 'line' nulled but not freed upon failure
[/src/libsvm/svm.cpp:3137]: (error) Common realloc mistake: 'label' nulled but not freed upon failure
[/src/libsvm/svm.cpp:3138]: (error) Common realloc mistake: 'count' nulled but not freed upon failure

Drilling into the first one:

...
line = (char *) realloc(line, max_line_len);
...

To fix these, you should check to see if realloc returns NULL. If it does, then free(line). If not, then assign the pointer to line. Without this, line will be assigned to NULL and the original object pointed to by line will dangle. More detailed guidance at:

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant