Advertisement
PVS-StudioWarnings

PVS-Studio warning V571 for Asterisk

Nov 26th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. void *ast_sorcery_retrieve_by_fields(....)
  2. {
  3.   ....
  4.   if ((flags & AST_RETRIEVE_FLAG_MULTIPLE)) {
  5.   ....
  6.   } else if (fields && wizard->wizard->retrieve_fields) {  //<==
  7.       if (wizard->wizard->retrieve_fields) {               //<==
  8.         object = wizard->wizard->retrieve_fields(....);
  9.       }
  10.   }
  11. }
  12.  
  13. This suspicious code was found in Asterisk project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V571 Recurring check. The 'wizard->wizard->retrieve_fields' condition was already verified in line 1520. sorcery.c 1521
  16.  
  17. 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