Advertisement
PVS-StudioWarnings

PVS-Studio warning V528 for Scilab

Nov 27th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. int sci_xcosPalLoad(char *fname, unsigned long fname_len)
  2. {
  3.   ....
  4.   char **category = NULL;
  5.   ....
  6.   if (category == NULL ||
  7.       (lenCategory == 1 && *category == '\0'))
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in Scilab project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V528 It is odd that pointer to 'char' type is compared with the '\0' value. Probably meant: ** category == '\0'. sci_xcospalload.cpp 57
  14.  
  15. 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