Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
01a24c0a
Commit
01a24c0a
authored
Jun 06, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "ASF: Do not use stream_Read with a NULL buffer"
This reverts commit
77a7babe
.
parent
77a7babe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/demux/asf/asf.c
modules/demux/asf/asf.c
+2
-3
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+1
-1
No files found.
modules/demux/asf/asf.c
View file @
01a24c0a
...
...
@@ -637,9 +637,8 @@ static int DemuxPacket( demux_t *p_demux )
msg_Warn
(
p_demux
,
"Read %d too much bytes in the packet"
,
i_packet_padding_length
-
i_packet_size_left
);
#endif
if
(
stream_Seek
(
p_demux
->
s
,
stream_Tell
(
p_demux
->
s
)
+
i_packet_size_left
)
!=
VLC_SUCCESS
)
if
(
stream_Read
(
p_demux
->
s
,
NULL
,
i_packet_size_left
)
<
i_packet_size_left
)
{
msg_Err
(
p_demux
,
"cannot skip data, EOF ?"
);
return
0
;
...
...
modules/demux/asf/libasf.c
View file @
01a24c0a
...
...
@@ -479,7 +479,7 @@ static int ASF_ReadObject_header_extension( stream_t *s, asf_object_t *p_obj )
if
(
!
p_he
->
i_header_extension_size
)
return
VLC_SUCCESS
;
/* Read the extension objects */
stream_
Seek
(
s
,
stream_Tell
(
s
)
+
46
);
stream_
Read
(
s
,
NULL
,
46
);
for
(
;
;
)
{
asf_object_t
*
p_obj
=
malloc
(
sizeof
(
asf_object_t
)
);
...
...
Write
Preview
Markdown
is supported
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