Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for LAME 3.xx

Nov 27th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. static int
  2. check_vbr_header(PMPSTR mp,int bytes)
  3. {
  4.   ...
  5.   buf  = buf->next;
  6.   pos = buf->pos;
  7.   if(!buf) return -1; /* fatal error */
  8.   ...
  9. }
  10.  
  11. This suspicious code was found in LAME 3.xx project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V595 The 'buf' pointer was utilized before it was verified against nullptr. Check lines: 226, 227.  mpglib interface.c 226
  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