Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for ReactOS

Nov 25th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. typedef unsigned int GLuint;
  2.  
  3. const GLubyte *_mesa_get_enabled_extension(
  4.   struct gl_context *ctx, GLuint index)
  5. {
  6.   const GLboolean *base;
  7.   size_t n;
  8.   const struct extension *i;
  9.   if (index < 0)
  10.     return NULL;
  11.   ....
  12. }
  13.  
  14. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V547 Expression 'index < 0' is always false. Unsigned type value is never < 0. extensions.c 936
  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