[Bugfix] Fix memory leak in Tight decoder.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3957 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/rfb/tightDecode.h b/common/rfb/tightDecode.h
index 689a527..5dfa5d2 100644
--- a/common/rfb/tightDecode.h
+++ b/common/rfb/tightDecode.h
@@ -315,6 +315,8 @@
     }
   }
 
+  delete [] rowPointer;
+
   if (cinfo.out_color_space == JCS_RGB)
     myFormat.bufferFromRGB((rdr::U8*)buf, dstBuf, w * h);