Commit c7d6aad6 authored by Rémi Duraffort's avatar Rémi Duraffort

upnpn_intel: Compilation fix.

parent bebc7751
...@@ -88,6 +88,7 @@ class MediaServer; ...@@ -88,6 +88,7 @@ class MediaServer;
class MediaServerList; class MediaServerList;
class Item; class Item;
class Container; class Container;
class Lockable;
// Cookie that is passed to the callback // Cookie that is passed to the callback
...@@ -105,10 +106,14 @@ typedef struct ...@@ -105,10 +106,14 @@ typedef struct
class Lockable class Lockable
{ {
public: public:
Lockable()
{
vlc_mutex_init( &_mutex );
}
Lockable( Cookie* c ) Lockable( Cookie* c )
{ {
vlc_mutex_init( &_mutex ); Lockable();
} }
~Lockable() ~Lockable()
......
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