Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for Cocos2d-x

Nov 24th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.74 KB | None | 0 0
  1. #ifdef UNICODE
  2. #define gai_strerror   gai_strerrorW            //<==
  3. #else
  4. #define gai_strerror   gai_strerrorA
  5. #endif  /* UNICODE */
  6.  
  7. bool Console::listenOnTCP(int port)
  8. {
  9.   ....
  10.   fprintf(stderr,"net_listen error for %s: %s", //<==
  11.     serv, gai_strerror(n));                     //<==
  12.   ....
  13. }
  14.  
  15. This suspicious code was found in Cocos2d-x project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V576 Incorrect format. Consider checking the fourth actual argument of the 'fprintf' function. The pointer to string of char type symbols is expected. ccconsole.cpp 341
  18.  
  19. 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