Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for Synergy

Nov 24th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. DWORD dwMajorVersion;
  2. DWORD dwMinorVersion;
  3.  
  4. std::string
  5. CArchSystemWindows::getOSName() const
  6. {
  7.   ....
  8.   char buffer[100];
  9.   sprintf(buffer, "Microsoft Windows %d.%d",
  10.           info.dwMajorVersion, info.dwMinorVersion);
  11.   ....
  12. }
  13.  
  14. This suspicious code was found in Synergy project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V576 Incorrect format. Consider checking the third actual argument of the 'sprintf' function. The SIGNED integer type argument is expected. carchsystemwindows.cpp 90
  17.  
  18. 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