projects
/
platform
/
upstream
/
gst-plugins-ugly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
777d743
)
asfdemux: Fix bogus variable used uninitialised warnings
author
Jan Schmidt
<thaytan@noraisin.net>
Wed, 4 Nov 2009 15:46:04 +0000
(15:46 +0000)
committer
Jan Schmidt
<thaytan@noraisin.net>
Wed, 4 Nov 2009 15:46:04 +0000
(15:46 +0000)
gst/asfdemux/gstasfdemux.c
patch
|
blob
|
history
diff --git
a/gst/asfdemux/gstasfdemux.c
b/gst/asfdemux/gstasfdemux.c
index
39a9f2e
..
d7f4287
100644
(file)
--- a/
gst/asfdemux/gstasfdemux.c
+++ b/
gst/asfdemux/gstasfdemux.c
@@
-2253,9
+2253,9
@@
asf_demux_parse_picture_tag (GstTagList * tags, const guint8 * tag_data,
guint tag_data_len)
{
GstByteReader r;
- const guint8 *img_data;
- guint32 img_data_len;
- guint8 pic_type;
+ const guint8 *img_data
= NULL
;
+ guint32 img_data_len
= 0
;
+ guint8 pic_type
= 0
;
gst_byte_reader_init (&r, tag_data, tag_data_len);