# HG changeset patch # User uau # Date 1153174954 0 # Node ID c23bd9485604475cf3e526724e0aad8de2f1764c # Parent 24725931c6210c4558033718ba86f5d00abe0ef3 Fix use of uninitialized variable diff -r 24725931c621 -r c23bd9485604 libmpdemux/asfheader.c --- a/libmpdemux/asfheader.c Mon Jul 17 21:15:27 2006 +0000 +++ b/libmpdemux/asfheader.c Mon Jul 17 22:22:34 2006 +0000 @@ -230,7 +230,7 @@ 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.