If a value is uninitialized and then used then it is a defect. This could be

From: Erik Hovland <erik@hovland.org>

true for very strange conditions. But true none-the-less.
---

 programs/mythfrontend/main.cpp |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/programs/mythfrontend/main.cpp b/programs/mythfrontend/main.cpp
index 782ab4a..37c19d9 100644
--- a/programs/mythfrontend/main.cpp
+++ b/programs/mythfrontend/main.cpp
@@ -1531,9 +1531,8 @@ int main(int argc, char **argv)
 
     if (priv_thread_created)
     {
-        void *value;
         gContext->addPrivRequest(MythPrivRequest::MythExit, NULL);
-        pthread_join(priv_thread, &value);
+        pthread_join(priv_thread, 0);
     }
 
     signal(SIGHUP, SIG_DFL);
