Advertisement
PVS-StudioWarnings

PVS-Studio warning V612 for tcmalloc

Nov 27th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. int SymbolTable::Symbolize() {
  2.   ....
  3.   if (socketpair(AF_UNIX, SOCK_STREAM, 0, child_fds[i]) == -1) {
  4.     for (int j = 0; j < i; j++) {
  5.       close(child_fds[j][0]);
  6.       close(child_fds[j][1]);
  7.       PrintError("Cannot create a socket pair");
  8.       return 0;
  9.     }
  10.   }
  11.   ....
  12. }
  13.  
  14. This suspicious code was found in tcmalloc project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V612 An unconditional 'return' within a loop. symbolize.cc 154
  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