mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 12:55:16 +00:00
Fix use of uninitialized variable
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19129 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
405df542a7
commit
eb05b22b01
@ -230,7 +230,7 @@ int read_asf_header(demuxer_t *demuxer,struct asf_priv* asf){
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
if ((pos = find_asf_guid(hdr, asf_ext_stream_audio, pos, hdr_len)) >= 0)
|
||||
if ((pos = find_asf_guid(hdr, asf_ext_stream_audio, 0, hdr_len)) >= 0)
|
||||
{
|
||||
// Special case: found GUID for dvr-ms audio.
|
||||
// Now skip back to associated stream header.
|
||||
|
Loading…
Reference in New Issue
Block a user