Advertisement
PVS-StudioWarnings

PVS-Studio warning V590 for ReactOS

Nov 10th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. static inline BOOL is_basic_auth_value( LPCWSTR pszAuthValue,
  2.                                         LPWSTR *pszRealm )
  3. {
  4.   ...
  5.   while (*token == ' ' && *token != '\0')
  6.     token++;
  7.   ...
  8. }
  9.  
  10. //Enough:
  11. while (*token == ' ')
  12.   token++;
  13.  
  14. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V590 Consider inspecting the '* token == ' ' && * token != '\0'' expression. The expression is excessive or contains a misprint. wininet http.c 800
  17.  
  18. 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