Advertisement
PVS-StudioWarnings

PVS-Studio warning V668 for Chromium

Nov 20th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. int LoadOperations(....)
  2. {
  3.   ....
  4.   disk_cache::BackendImpl* cache = new disk_cache::BackendImpl(
  5.     path, 0xf, cache_thread->message_loop_proxy().get(), NULL);
  6.   if (!cache || !cache->SetMaxSize(0x100000))
  7.     return GENERIC;
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in Chromium project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V668 There is no sense in testing the 'cache' pointer against null, as the memory was allocated using the 'new' operator. The exception will be generated in the case of memory allocation error. crash_cache.cc 269
  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