From 60f2801ecfa9aace591d04e81faa9f6cf6be81b7 Mon Sep 17 00:00:00 2001 From: Ilari Liusvaara Date: Sat, 9 Feb 2013 18:35:39 +0200 Subject: [PATCH] Fix some uninitialized variables caught by Valgrind --- src/core/inthread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/inthread.cpp b/src/core/inthread.cpp index a635c89c..f01bd8a1 100644 --- a/src/core/inthread.cpp +++ b/src/core/inthread.cpp @@ -1696,6 +1696,8 @@ out: public: inthread_th() { + quit = false; + quit_ack = false; rptr = 0; fire(); }