-
Notifications
You must be signed in to change notification settings - Fork 3
Topic/dummy #297
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
base: develop
Are you sure you want to change the base?
Topic/dummy #297
Conversation
Added a comment for testing purposes.
Coverity Issue - Resource leakFreeing pointer-to-pointer "pParam_name_list" without freeing the pointer it points to leaks the storage that inner pointer points to. High Impact, CWE-404 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Array compared against 0Comparing an array to null is not useful: ""NumberOfEntries" != NULL", since the test will always evaluate as true. Medium Impact, CWE-398 How to fixWas ""NumberOfEntries"" formerly declared as a pointer? Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Resource leakVariable "dmParam" going out of scope leaks the storage "dmParam.objectName" points to. High Impact, CWE-404 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Resource leakVariable "dmParam" going out of scope leaks the storage "dmParam.bsUpdate" points to. High Impact, CWE-404 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Check of thread-shared field evades lock acquisitionThread1 sets "g_dbhandle" to a new value. Now the two threads have an inconsistent view of "g_dbhandle" and updates to fields correlated with "g_dbhandle" may be lost. High Impact, CWE-543 How to fixGuard the modification of "g_dbhandle" and the read used to decide whether to modify "g_dbhandle" with the same set of locks. Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Resource leakVariable "dmParam" going out of scope leaks the storage "dmParam.access" points to. High Impact, CWE-404 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Resource leakVariable "dmParam" going out of scope leaks the storage "dmParam.paramName" points to. High Impact, CWE-404 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Copy into fixed size bufferYou might overrun the 512-character fixed-size string "currentParam" by copying the return value of "Value" without checking the length. Low Impact, CWE-120 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
No description provided.