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
This commit is contained in:
Ronald S. Bultje 2003-12-21 22:13:42 +00:00
parent c453aa275f
commit aca4c1865c

View file

@ -64,7 +64,8 @@ mp3_sink_factory (void)
"mp3parse_sink",
"audio/mpeg",
"mpegversion", GST_PROPS_INT (1)
)
),
NULL
);
};