Advertisement
PVS-StudioWarnings

PVS-Studio warning V549 for Chromium

Nov 24th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. void DiskCacheEntryTest::ExternalSyncIOBackground(....) {
  2.   ....
  3.   scoped_refptr<net::IOBuffer>
  4.     buffer1(new net::IOBuffer(kSize1));
  5.   scoped_refptr<net::IOBuffer>
  6.     buffer2(new net::IOBuffer(kSize2));
  7.   ....
  8.   EXPECT_EQ(0, memcmp(buffer2->data(), buffer2->data(), 10000));
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in Chromium project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V549 The first argument of 'memcmp' function is equal to the second argument. entry_unittest.cc 393
  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