Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for SteamworksSDK

Nov 21st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. typedef uint32 AccountID_t;
  2. AccountID_t GetAccountID() const;
  3.  
  4. void CP2PAuthPlayer::OnBeginAuthResponse()
  5. {
  6.   ....
  7.   sprintf( rgch,
  8.            "P2P:: Received steam response for account=%d\n",
  9.            m_steamID.GetAccountID() );
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in SteamworksSDK project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V576 Incorrect format. Consider checking the third actual argument of the 'sprintf' function. The SIGNED integer type argument is expected. p2pauth.cpp 111
  16.  
  17. 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