Skip to content

Commit

Permalink
Properly initializes UDP message listener.
Browse files Browse the repository at this point in the history
This properly initializes the ServerPool reference to NULL in the UDP
Listener class, following 8532584, allowing its current state to be
properly detected, and allowing it to be brought up and down
successfully.

Fixes #11037
  • Loading branch information
wagnerrp committed Aug 25, 2012
1 parent 5be7a55 commit 3e5bd14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythui/mythudplistener.cpp
Expand Up @@ -11,7 +11,8 @@

#define LOC QString("UDPListener: ")

MythUDPListener::MythUDPListener()
MythUDPListener::MythUDPListener() :
m_socketPool(NULL)
{
Enable();
}
Expand Down

0 comments on commit 3e5bd14

Please sign in to comment.