diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-12-21 22:13:42 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-12-21 22:13:42 +0000 |
commit | 2309d726b7b0c37dbd9c57c653e2053ec6258ac8 (patch) | |
tree | 7ee7b86a5ffd7181ae970027136baddadf7c465d /gst/mpegaudioparse | |
parent | 1835d5eb9c76f5c8eab4fe6ac8fca3bd0f846564 (diff) | |
download | gst-plugins-bad-2309d726b7b0c37dbd9c57c653e2053ec6258ac8.tar.gz gst-plugins-bad-2309d726b7b0c37dbd9c57c653e2053ec6258ac8.tar.bz2 gst-plugins-bad-2309d726b7b0c37dbd9c57c653e2053ec6258ac8.zip |
Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register
Original commit message from CVS:
Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register
Diffstat (limited to 'gst/mpegaudioparse')
-rw-r--r-- | gst/mpegaudioparse/gstmpegaudioparse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c index 2dc68932..6c7e614f 100644 --- a/gst/mpegaudioparse/gstmpegaudioparse.c +++ b/gst/mpegaudioparse/gstmpegaudioparse.c @@ -64,7 +64,8 @@ mp3_sink_factory (void) "mp3parse_sink", "audio/mpeg", "mpegversion", GST_PROPS_INT (1) - ) + ), + NULL ); }; |