Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for InstantVNC

Nov 25th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. static void
  2. rfbInitTrueColourSingleTableOUTVNC (char **table,
  3.   rfbPixelFormat *in, rfbPixelFormat *out)
  4. {
  5.   ...
  6.   if (*table) free(*table);
  7.     *table = (char *)malloc(nEntries * sizeof(OUT_T));
  8.   if (table == NULL) return;
  9.     t = (OUT_T *)*table;
  10.   ...
  11. }
  12.  
  13. This suspicious code was found in InstantVNC project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V595 The 'table' pointer was utilized before it was verified against nullptr. Check lines: 47, 49. miniWinVNC tableinittctemplate.cpp 47
  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