projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6869411
)
matroska: Fix unitialized variable
author
Edward Hervey
<bilboed@bilboed.com>
Tue, 15 Jun 2010 15:20:20 +0000
(17:20 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Tue, 15 Jun 2010 15:20:20 +0000
(17:20 +0200)
gst/matroska/ebml-read.c
patch
|
blob
|
history
diff --git
a/gst/matroska/ebml-read.c
b/gst/matroska/ebml-read.c
index 2a62f24e45cb18227fd3cec06de83556721c6517..4b1ae795daae59fc476bcee2b4c4847768807013 100644
(file)
--- a/
gst/matroska/ebml-read.c
+++ b/
gst/matroska/ebml-read.c
@@
-194,7
+194,7
@@
gst_ebml_read_clear (GstEbmlRead * ebml)
static const guint8 *
gst_ebml_read_peek (GstByteReader * br, guint peek)
{
- const guint8 *data;
+ const guint8 *data
= NULL
;
if (G_LIKELY (gst_byte_reader_peek_data (br, peek, &data)))
return data;
@@
-252,7
+252,7
@@
gst_ebml_read_master (GstEbmlRead * ebml, guint32 * id)
{
guint64 length;
guint prefix;
- const guint8 *data;
+ const guint8 *data
= NULL
;
GstFlowReturn ret;
GstEbmlMaster m;