Clear thread/condvar during shutdown.
authorScott Cantor <cantor.2@osu.edu>
Fri, 2 Apr 2010 00:34:49 +0000 (00:34 +0000)
committerScott Cantor <cantor.2@osu.edu>
Fri, 2 Apr 2010 00:34:49 +0000 (00:34 +0000)
xmltooling/util/ReloadableXMLFile.cpp

index fa37518..83a4293 100644 (file)
@@ -173,6 +173,8 @@ void ReloadableXMLFile::shutdown()
         m_reload_thread->join(NULL);
         delete m_reload_thread;
         delete m_reload_wait;
+        m_reload_thread = NULL;
+        m_reload_wait = NULL;
     }
 }