Advertisement
PVS-StudioWarnings

PVS-Studio warning V505 for DeSmuME

Nov 25th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. ArchiveFile::ArchiveFile(const char* filename)
  2. {
  3.   ...
  4.   for(size_t i = 0;
  5.       i < s_formatInfos.size() && m_typeIndex < 0;
  6.       i++)
  7.   {
  8.     ...
  9.     char* fileSig = (char*)_alloca(len);
  10.     ...
  11.   }
  12.   ...
  13. }
  14.  
  15. This suspicious code was found in DeSmuME project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V505 The 'alloca' function is used inside the loop. This can quickly overflow stack. DeSmuME_VS2005 7zip.cpp 161
  18.  
  19. 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