Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for Prime95

Nov 10th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. typedef UINT_PTR SOCKET;
  2.  
  3. SOCKET socket(__in int af, __in int type,
  4.               __in int protocol);
  5.  
  6. int pnHttpServer (char *pbuf, unsigned cbuf, char* postargs)
  7. {
  8.   ....
  9.   if ((s = socket (hp->h_addrtype, SOCK_STREAM, 0)) < 0) {
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in Prime95 project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V547 Expression '(s = socket(hp->h_addrtype, 1, 0)) < 0' is always false. Unsigned type value is never < 0. prime95 primenet.c 354
  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