Advertisement
PVS-StudioWarnings

PVS-Studio warning V668 for libyuv

Nov 26th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. LIBYUV_API
  2. int ConvertToARGB(....)
  3. {
  4.   ....
  5.   buf = new uint8[argb_size];
  6.   if (!buf) {
  7.     return 1;  // Out of memory runtime error.
  8.   }
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in libyuv project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V668 There is no sense in testing the 'buf' pointer against null, as the memory was allocated using the 'new' operator. The exception will be generated in the case of memory allocation error. convert_to_argb.cc 69
  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