upnp: remove obsolete global variable "theLib"

This commit is contained in:
Max Kellermann 2014-01-26 13:54:48 +01:00
parent 9f3ba737d6
commit 66c013682f
1 changed files with 0 additions and 6 deletions

View File

@ -25,8 +25,6 @@
#include <upnp/ixml.h>
#include <upnp/upnptools.h>
static LibUPnP *theLib;
LibUPnP::LibUPnP()
{
auto code = UpnpInit(0, 0);
@ -55,10 +53,6 @@ int
LibUPnP::o_callback(Upnp_EventType et, void* evp, void* cookie)
{
LibUPnP *ulib = (LibUPnP *)cookie;
if (ulib == nullptr) {
// Because the asyncsearch calls uses a null cookie.
ulib = theLib;
}
if (ulib->handler)
ulib->handler(et, evp);