]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unneeded logging from ZRLE decoder
authorPierre Ossman <ossman@cendio.se>
Mon, 29 Apr 2019 12:13:16 +0000 (14:13 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 29 Apr 2019 12:14:00 +0000 (14:14 +0200)
We will log the exception, so avoid direct writes to stderr by
simply removing these log lines.

common/rfb/zrleDecode.h

index b8148672c368a32c76bd9f569517ace65f4427ef..32b5c92b20a19329552a0059abb0b7e27b12605e 100644 (file)
@@ -134,7 +134,6 @@ void ZRLE_DECODE (const Rect& r, rdr::InStream* is,
             } while (b == 255);
 
             if (end - ptr < len) {
-              fprintf (stderr, "ZRLE decode error\n");
               throw Exception ("ZRLE decode error");
             }
 
@@ -158,7 +157,6 @@ void ZRLE_DECODE (const Rect& r, rdr::InStream* is,
               } while (b == 255);
 
               if (end - ptr < len) {
-                fprintf (stderr, "ZRLE decode error\n");
                 throw Exception ("ZRLE decode error");
               }
             }