Advertisement
PVS-StudioWarnings

PVS-Studio warning V501 for samba

Nov 26th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. int main(void)
  2. {
  3.   ....
  4.   if ((data->length != tests[i].length) ||
  5.       (memcmp(data>data, tests[i].data, data->length) != 0)) {
  6.     printf("Test for %d failed\n", values[i]);
  7.     ok = False;
  8.   }
  9.   ....
  10. }
  11.  
  12. Most likely this is what should be written here: data->data.
  13.  
  14. This suspicious code was found in samba project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V501 There are identical sub-expressions to the left and to the right of the '>' operator: data > data t_asn1.c 45
  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