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
3800e5d3
Commit
3800e5d3
authored
Dec 07, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: asf: fix signedness in content desc
parent
803def84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/demux/asf/libasf.c
modules/demux/asf/libasf.c
+2
-2
modules/demux/asf/libasf.h
modules/demux/asf/libasf.h
+1
-1
No files found.
modules/demux/asf/libasf.c
View file @
3800e5d3
...
...
@@ -1159,7 +1159,7 @@ static int ASF_ReadObject_extended_content_description( stream_t *s,
&
p_obj
->
extended_content_description
;
const
uint8_t
*
p_peek
,
*
p_data
;
int
i_peek
;
in
t
i
;
uint16_
t
i
;
if
(
(
i_peek
=
stream_Peek
(
s
,
&
p_peek
,
p_ec
->
i_object_size
)
)
<
26
)
return
VLC_EGENERIC
;
...
...
@@ -1258,7 +1258,7 @@ static void ASF_FreeObject_extended_content_description( asf_object_t *p_obj)
asf_object_extended_content_description_t
*
p_ec
=
&
p_obj
->
extended_content_description
;
for
(
in
t
i
=
0
;
i
<
p_ec
->
i_count
;
i
++
)
for
(
uint16_
t
i
=
0
;
i
<
p_ec
->
i_count
;
i
++
)
{
FREENULL
(
p_ec
->
ppsz_name
[
i
]
);
FREENULL
(
p_ec
->
ppsz_value
[
i
]
);
...
...
modules/demux/asf/libasf.h
View file @
3800e5d3
...
...
@@ -329,7 +329,7 @@ typedef struct
{
ASF_OBJECT_COMMON
in
t
i_count
;
uint16_
t
i_count
;
char
**
ppsz_name
;
char
**
ppsz_value
;
}
asf_object_extended_content_description_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