-
Notifications
You must be signed in to change notification settings - Fork 931
opal/crs: clean up parsing code to fix coverity issues #604
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
Conversation
|
Refer to this link for build results (access rights to CI server needed): Build Log Test FAILed. |
CID 70622 Dereference before null check (REVERSE_INULL) CID 70459 Logically dead code (DEADCODE) Cleanup some cludgy code which (among other things) reimplemented strcat, strdup, and strchr. In the process this resolved two outstanding coverity issues. CID 70631 Dereference before null check (REVERSE_INULL) best_module can not be NULL in this code path. Remove NULL check and unnecessary goto statements. Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
|
|
Refer to this link for build results (access rights to CI server needed): |
|
Not sure who would be willing to review this. The code in question is part of checkpoint-restart and is in maintenance mode. The commit does not change the logical result of the code. |
opal/crs: clean up parsing code to fix coverity issues
ROMIO configure looks for lstat in wrong header
CID 70622 Dereference before null check (REVERSE_INULL)
CID 70459 Logically dead code (DEADCODE)
Cleanup some cludgy code which (among other things) reimplemented
strcat, strdup, and strchr. In the process this resolved two
outstanding coverity issues.
CID 70631 Dereference before null check (REVERSE_INULL)
best_module can not be NULL in this code path. Remove NULL check and
unnecessary goto statements.
Signed-off-by: Nathan Hjelm hjelmn@lanl.gov