Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
a4ed5daa
Commit
a4ed5daa
authored
Mar 05, 2012
by
Stefan Sauer
Browse files
wavpackparse: initialize header to silence older gcc versions
parent
7ca56e24
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/audioparsers/gstwavpackparse.c
View file @
a4ed5daa
...
...
@@ -399,7 +399,7 @@ gst_wavpack_parse_frame_header (GstWavpackParse * parse, GstBuffer * buf,
gint
skip
,
WavpackHeader
*
_wph
)
{
GstByteReader
br
=
GST_BYTE_READER_INIT_FROM_BUFFER
(
buf
);
WavpackHeader
wph
;
WavpackHeader
wph
=
{
{
0
,},
0
,
}
;
g_return_val_if_fail
(
GST_BUFFER_SIZE
(
buf
)
>=
skip
+
sizeof
(
WavpackHeader
),
FALSE
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment