Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for DeSmuME

Nov 27th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. int str_rtrim(char *str, int flags) {
  2.  u32 i=0;
  3.  
  4.  while (strlen(str)) {
  5.   if ((str[strlen(str)-1] != ' ') ||
  6.    (str[strlen(str)-1] != '\t') ||
  7.    (str[strlen(str)-1] != '\r') ||
  8.    (str[strlen(str)-1] != '\n')) break;
  9.   ...
  10. }
  11.  
  12. This suspicious code was found in DeSmuME project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V547 Expression is always true. Probably the '&&' operator should be used here. DeSmuME_VS2005 xstring.cpp 124
  15.  
  16. 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