]> source.dussan.org Git - tigervnc.git/commitdiff
get rid of c++11 stuff 1419/head
authorVladimir Sukhonosov <xornet@xornet.org>
Tue, 25 Jan 2022 19:14:00 +0000 (22:14 +0300)
committerVladimir Sukhonosov <xornet@xornet.org>
Tue, 25 Jan 2022 19:14:00 +0000 (22:14 +0300)
common/rfb/H264Decoder.cxx
common/rfb/H264DecoderContext.h

index fd71ea03d4d83bd4efa42cdddff7a7e06b62175f..27c380bbf4ccef5267e6db61b3b5639cab76fa5c 100644 (file)
@@ -115,8 +115,8 @@ void H264Decoder::decodeRect(const Rect& r, const void* buffer,
     os::AutoMutex lock(&mutex);
     if (contexts.size() >= MAX_H264_INSTANCES)
     {
-      auto excecc_ctx = contexts.front();
-      delete excecc_ctx;
+      H264DecoderContext* excess_ctx = contexts.front();
+      delete excess_ctx;
       contexts.pop_front();
     }
     ctx = H264DecoderContext::createContext(r);
index 2316b6b4e3fb876792bad16c87858ccae459d442..bd93b46f9566532d347c13d6a10fe32ac7ed8548 100644 (file)
@@ -42,7 +42,7 @@ namespace rfb {
     protected:
       os::Mutex mutex;
       rfb::Rect rect;
-      bool initialized = false;
+      bool initialized;
 
       H264DecoderContext(const Rect &r) : rect(r) { initialized = false; }