Advertisement
PVS-StudioWarnings

PVS-Studio warning V600 for OpenSSL

Nov 10th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. int MAIN(int argc, char **argv)
  2. {
  3.   ....
  4.   long dsa_c[DSA_NUM][2];
  5.   ....
  6.   if (dsa_c[i] == 0)
  7.   {
  8.     dsa_c[i][0]=1;
  9.     dsa_c[i][1]=1;
  10.   }
  11.   ....
  12. }
  13.  
  14. Most likely this is what should be written here: (dsa_c[i][0] == 0).
  15.  
  16.  
  17. This suspicious code was found in OpenSSL project by PVS-Studio static code analyzer.
  18. Warning message is:
  19. V600 Consider inspecting the condition. The 'dsa_c[i]' pointer is always not equal to NULL. speed.c 1486
  20.  
  21. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement