Advertisement
PVS-StudioWarnings

PVS-Studio warning V618 for TortoiseSVN

Nov 27th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. BOOL CPOFile::ParseFile(....)
  2. {
  3.   ....
  4.   printf(File.getloc().name().c_str());
  5.   ....
  6. }
  7.  
  8. "file%s%i%s.txt" - The file name that will ruin everything.
  9.  
  10. This suspicious code was found in TortoiseSVN project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V618 It's dangerous to call the 'printf' function in such a manner, as the line being passed could contain format specification. The example of the safe code: printf("%s", str); pofile.cpp 158
  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