Commit 66c01368 authored by Max Kellermann's avatar Max Kellermann

upnp: remove obsolete global variable "theLib"

parent 9f3ba737
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment