diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-09-02 16:17:31 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-11-06 21:06:22 +0100 |
commit | 158eb92c4bc4ec7cdedabd9b192648627513c518 (patch) | |
tree | 61dd50a0bcae0c86459053fcc46c913dee81b701 /common/rfb/JpegCompressor.cxx | |
parent | 067d0e89bf344609ec202f895252411c8fcaec1c (diff) | |
download | tigervnc-158eb92c4bc4ec7cdedabd9b192648627513c518.tar.gz tigervnc-158eb92c4bc4ec7cdedabd9b192648627513c518.zip |
Use static string for exceptions
In preparation for using the built in C++ exception classes, which do
not accept a format string.
Diffstat (limited to 'common/rfb/JpegCompressor.cxx')
-rw-r--r-- | common/rfb/JpegCompressor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rfb/JpegCompressor.cxx b/common/rfb/JpegCompressor.cxx index 42d5c475..49ed4b61 100644 --- a/common/rfb/JpegCompressor.cxx +++ b/common/rfb/JpegCompressor.cxx @@ -127,7 +127,7 @@ JpegCompressor::JpegCompressor(int bufferLen) : MemOutStream(bufferLen) if(setjmp(err->jmpBuffer)) { // this will execute if libjpeg has an error - throw rdr::Exception("%s", err->lastError); + throw rdr::Exception(err->lastError); } jpeg_create_compress(cinfo); @@ -171,7 +171,7 @@ void JpegCompressor::compress(const uint8_t *buf, volatile int stride, jpeg_abort_compress(cinfo); if (srcBufIsTemp && srcBuf) delete[] srcBuf; if (rowPointer) delete[] rowPointer; - throw rdr::Exception("%s", err->lastError); + throw rdr::Exception(err->lastError); } cinfo->image_width = w; |