Advertisement
PVS-StudioWarnings

PVS-Studio warning V512 for QT

Nov 27th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. int s_attr_table[256];
  2.  
  3. void CppLexer::setupScanTable()
  4. {
  5.   ...
  6.   memset(s_attr_table, 0, 256);
  7.   ...
  8. }
  9.  
  10. This is what should have been written here: sizeof(int) * 256
  11.  
  12.  
  13. This suspicious code was found in QT project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V512 A call of the 'memset' function will lead to underflow of the buffer 's_attr_table'. qt3to4 cpplexer.cpp 77
  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