Advertisement
PVS-StudioWarnings

PVS-Studio warning V666 for TPP

Nov 27th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.76 KB | None | 0 0
  1. int main(int argc, char** argv) {
  2.   ....
  3.   if (strcmp(argv[argidx], "NONSS") &&
  4.       ....
  5.       strncmp(argv[argidx], "CAT=", 4) &&
  6.       strncmp(argv[argidx], "DECOY=", 6) &&
  7.       strncmp(argv[argidx], "THREADS=", 6) &&
  8.       strncmp(argv[argidx], "MINPROB=", 8)) {
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in TPP project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V666 Consider inspecting third argument of the function 'strncmp'. It is possible that the value does not correspond with the length of a string which was passed with the second argument. interprophetmain.cxx 151
  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