From 479dc6f761dad459f70782c79320cca9e0a84991 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Thu, 23 Sep 2010 22:25:15 +0200 Subject: [PATCH] Attach the sap object to libvlc. --- src/stream_output/sap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stream_output/sap.c b/src/stream_output/sap.c index 40e03e8bd6..04a3b9e35a 100644 --- a/src/stream_output/sap.c +++ b/src/stream_output/sap.c @@ -108,6 +108,7 @@ sap_handler_t *SAP_Create (vlc_object_t *p_announce) if (p_sap == NULL) return NULL; + vlc_object_attach( p_sap, p_announce ); vlc_mutex_init (&p_sap->lock); p_sap->first = NULL; return p_sap; -- 2.39.2