Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for Cairo

Nov 25th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. cairo_status_t
  2. _cairo_win32_print_gdi_error (const char *context)
  3. {
  4.   ....
  5.   fwprintf (stderr, L"%s: %S", context, (wchar_t *)lpMsgBuf);
  6.   ....
  7. }
  8.  
  9. This is what should be written: fwprintf (stderr, L"%S: %s", context, (wchar_t *)lpMsgBuf);
  10.  
  11. This suspicious code was found in Cairo project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V576 Incorrect format. Consider checking the third actual argument of the 'fwprintf' function. The pointer to string of wchar_t type symbols is expected. cairo-win32-surface.c 130
  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