Advertisement
PVS-StudioWarnings

PVS-Studio warning V642 for xpdfwin

Nov 20th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. GBool BitmapOutputDev::clip0and1differ(....)
  2. {
  3.   ....
  4.   char differs2 = memcmp(a0, a1, width*height);
  5.   if(differs && !differs2)
  6.     msg("<warning> Strange internal error (2)");
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in xpdfwin project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V642 Saving the 'memcmp' function result inside the 'char' type variable is inappropriate. The significant bits could be lost breaking the program's logic. bitmapoutputdev.cc 710
  13.  
  14. 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