Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
83db4181
Commit
83db4181
authored
Apr 02, 2012
by
Jean-Baptiste Kempf
Browse files
VOC: avoid division by 0 if number of channel is 0
Reported by Marcin 'Icewall' Noga from Hispasec
parent
4d26b98a
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/voc.c
View file @
83db4181
...
...
@@ -357,6 +357,12 @@ static int ReadBlockHeader( demux_t *p_demux )
return
VLC_EGENERIC
;
}
if
(
new_fmt
.
audio
.
i_channels
==
0
)
{
msg_Err
(
p_demux
,
"0 channels detected"
);
return
VLC_EGENERIC
;
}
new_fmt
.
audio
.
i_bytes_per_frame
=
new_fmt
.
audio
.
i_channels
*
(
new_fmt
.
audio
.
i_bitspersample
/
8
);
new_fmt
.
audio
.
i_frame_length
=
1
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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