Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
0bac0634
Commit
0bac0634
authored
Jul 02, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed initialization of asf_object_t inside ASF_ReadObject (fixed invalid
free). Removed useless memset after calloc.
parent
1308862f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+1
-3
No files found.
modules/demux/asf/libasf.c
View file @
0bac0634
...
@@ -619,8 +619,6 @@ static int ASF_ReadObject_codec_list( stream_t *s, asf_object_t *p_obj )
...
@@ -619,8 +619,6 @@ static int ASF_ReadObject_codec_list( stream_t *s, asf_object_t *p_obj )
{
{
p_cl
->
codec
=
calloc
(
p_cl
->
i_codec_entries_count
,
p_cl
->
codec
=
calloc
(
p_cl
->
i_codec_entries_count
,
sizeof
(
asf_codec_entry_t
)
);
sizeof
(
asf_codec_entry_t
)
);
memset
(
p_cl
->
codec
,
0
,
p_cl
->
i_codec_entries_count
*
sizeof
(
asf_codec_entry_t
)
);
p_data
=
p_peek
+
44
;
p_data
=
p_peek
+
44
;
for
(
i_codec
=
0
;
i_codec
<
p_cl
->
i_codec_entries_count
;
i_codec
++
)
for
(
i_codec
=
0
;
i_codec
<
p_cl
->
i_codec_entries_count
;
i_codec
++
)
...
@@ -1290,7 +1288,7 @@ static int ASF_ReadObject( stream_t *s, asf_object_t *p_obj,
...
@@ -1290,7 +1288,7 @@ static int ASF_ReadObject( stream_t *s, asf_object_t *p_obj,
if
(
!
p_obj
)
if
(
!
p_obj
)
return
(
0
);
return
(
0
);
memset
(
p_obj
,
0
,
sizeof
(
p_obj
)
);
memset
(
p_obj
,
0
,
sizeof
(
*
p_obj
)
);
if
(
ASF_ReadObjectCommon
(
s
,
p_obj
)
)
if
(
ASF_ReadObjectCommon
(
s
,
p_obj
)
)
{
{
...
...
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