Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for Chromium

Nov 25th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.78 KB | None | 0 0
  1. DWORD GetLastError(VOID);
  2.  
  3. void TryOpenFile(wchar_t *path, FILE *output) {
  4.   wchar_t path_expanded[MAX_PATH] = {0};
  5.   DWORD size = ::ExpandEnvironmentStrings(
  6.     path, path_expanded, MAX_PATH - 1);
  7.   if (!size) {
  8.     fprintf(output,
  9.             "[ERROR] Cannot expand \"%S\". Error %S.\r\n",
  10.             path, ::GetLastError());
  11.   }
  12.   ....
  13. }
  14.  
  15. This suspicious code was found in Chromium project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V576 Incorrect format. Consider checking the fourth actual argument of the 'fprintf' function. The pointer to string of wchar_t type symbols is expected. fs.cc 17
  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