Advertisement
PVS-StudioWarnings

PVS-Studio warning V631 for NetXMS

Nov 27th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. static void CreateMiniDump(DWORD pid)
  2. {
  3.   ....
  4.   hFile = CreateFile(
  5.     _T("C:\\netxmsd.mdmp"), GENERIC_WRITE, 0, NULL,
  6.     CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
  7.  
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in NetXMS project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V631 Consider inspecting the 'CreateFileW' function call. Defining an absolute path to the file or directory is considered a poor style. netxmsd.cpp 126
  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