summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_asf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_asf.c')
-rw-r--r--src/demuxers/demux_asf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 5edd74959..ae5f6741c 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_asf.c,v 1.112 2003/03/07 12:51:47 guenter Exp $
+ * $Id: demux_asf.c,v 1.113 2003/03/28 14:55:52 miguelfreitas Exp $
*
* demultiplexer for asf streams
*
@@ -1323,6 +1323,7 @@ static int demux_asf_parse_http_references( demux_asf_t *this) {
strcpy(data->mrl, href);
data->alternative = 0;
xine_event_send(this->stream, &uevent);
+ free(data);
}
free (buf);
@@ -1386,6 +1387,7 @@ static int demux_asf_parse_asf_references( demux_asf_t *this) {
strcpy(data->mrl, ptr);
data->alternative = 0;
xine_event_send(this->stream, &uevent);
+ free(data);
}
free (buf);
@@ -1481,6 +1483,7 @@ static int demux_asf_parse_asx_references( demux_asf_t *this) {
strcpy(data->mrl, href);
data->alternative = 0;
xine_event_send(this->stream, &uevent);
+ free(data);
}
href = NULL;
}