Advertisement
PVS-StudioWarnings

PVS-Studio warning V501 for PHP

Nov 26th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.76 KB | None | 0 0
  1. static enum
  2. entity_charset determine_charset(char *charset_hint TSRMLS_DC)
  3. {
  4.   ....
  5.   if ((len == 4) /* sizeof (none|auto|pass) */ && //<==
  6.     (!memcmp("pass", charset_hint, 4) ||
  7.      !memcmp("auto", charset_hint, 4) ||          //<==
  8.      !memcmp("auto", charset_hint, 4)))           //<==
  9.   {
  10.        charset_hint = NULL;
  11.       len = 0;
  12.   }
  13.   ....
  14. }
  15.  
  16. This suspicious code was found in PHP project by PVS-Studio static code analyzer.
  17. Warning message is:
  18. V501 There are identical sub-expressions '!memcmp("auto", charset_hint, 4)' to the left and to the right of the '||' operator. html.c 396
  19.  
  20. 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