Advertisement
PVS-StudioWarnings

PVS-Studio warning V536 for PostgreSQL

Nov 21st, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. void
  2. RestoreArchive(Archive *AHX)
  3. {
  4.   ....
  5.   AHX->minRemoteVersion = 070100;
  6.   AHX->maxRemoteVersion = 999999;
  7.   ....
  8. }
  9.  
  10. This is what should have been written here: AHX->minRemoteVersion = 70100;
  11.  
  12. This suspicious code was found in PostgreSQL project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V536 Be advised that the utilized constant value is represented by an octal form. Oct: 070100, Dec: 28736. pg_dump pg_backup_archiver.c 301
  15.  
  16. 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