mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/asfdemux/gstasfdemux.c: Fix silly bug when reading metadata (#341254).
Original commit message from CVS: * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_string): Fix silly bug when reading metadata (#341254).
This commit is contained in:
parent
fefabc91c5
commit
1efcd72335
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_string):
|
||||
Fix silly bug when reading metadata (#341254).
|
||||
|
||||
2006-05-08 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* autogen.sh: (CONFIGURE_DEF_OPT):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 6b67aa6dd111fb139e1be0f6a386e3ff84cce091
|
||||
Subproject commit e41606ab2c6a31be473de511b5fd776bd2593b56
|
|
@ -548,7 +548,7 @@ gst_asf_demux_get_string (gchar ** p_str, guint16 * p_strlen,
|
|||
|
||||
s_length = gst_asf_demux_get_uint16 (p_data, p_size);
|
||||
|
||||
if (*p_strlen)
|
||||
if (p_strlen)
|
||||
*p_strlen = s_length;
|
||||
|
||||
if (s_length == 0) {
|
||||
|
|
Loading…
Reference in a new issue