Advertisement
PVS-StudioWarnings

PVS-Studio warning V501 for blender

Nov 25th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. typedef struct opj_pi_resolution {
  2.   int pdx, pdy;
  3.   int pw, ph;
  4. } opj_pi_resolution_t;
  5.  
  6. static bool pi_next_rpcl(opj_pi_iterator_t * pi) {
  7.   ...
  8.   if ((res->pw==0)||(res->pw==0)) continue;
  9.   ...
  10. }
  11.  
  12. Most likely this is what should be written here: (res->pw==0)||(res->ph==0).
  13.  
  14.  
  15. This suspicious code was found in blender project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V501 There are identical sub-expressions to the left and to the right of the '||' operator: (res->pw == 0) || (res->pw == 0) extern_openjpeg pi.c 219
  18.  
  19. 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