Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8b46168d
Commit
8b46168d
authored
Mar 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix buffer overflow.
parent
c51d4c68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
23 deletions
+25
-23
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+25
-23
No files found.
modules/demux/mp4/libmp4.c
View file @
8b46168d
...
...
@@ -1638,12 +1638,22 @@ static int MP4_ReadBox_stdp( stream_t *p_stream, MP4_Box_t *p_box )
static
void
MP4_FreeBox_stdp
(
MP4_Box_t
*
p_box
)
{
FREE
(
p_box
->
data
.
p_stdp
->
i_priority
)
FREENULL
(
p_box
->
data
.
p_stdp
->
i_priority
);
}
static
void
MP4_FreeBox_padb
(
MP4_Box_t
*
p_box
)
{
FREENULL
(
p_box
->
data
.
p_padb
->
i_reserved1
);
FREENULL
(
p_box
->
data
.
p_padb
->
i_pad2
);
FREENULL
(
p_box
->
data
.
p_padb
->
i_reserved2
);
FREENULL
(
p_box
->
data
.
p_padb
->
i_pad1
);
}
static
int
MP4_ReadBox_padb
(
stream_t
*
p_stream
,
MP4_Box_t
*
p_box
)
{
int
code
=
0
;
unsigned
int
i
;
uint32_t
count
;
MP4_READBOX_ENTER
(
MP4_Box_data_padb_t
);
...
...
@@ -1651,23 +1661,21 @@ static int MP4_ReadBox_padb( stream_t *p_stream, MP4_Box_t *p_box )
MP4_GET4BYTES
(
p_box
->
data
.
p_padb
->
i_sample_count
);
count
=
p_box
->
data
.
p_padb
->
i_sample_count
;
count
=
(
count
+
1
)
/
2
;
p_box
->
data
.
p_padb
->
i_reserved1
=
calloc
(
(
p_box
->
data
.
p_padb
->
i_sample_count
+
1
)
/
2
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_pad2
=
calloc
(
(
p_box
->
data
.
p_padb
->
i_sample_count
+
1
)
/
2
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_reserved2
=
calloc
(
(
p_box
->
data
.
p_padb
->
i_sample_count
+
1
)
/
2
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_pad1
=
calloc
(
(
p_box
->
data
.
p_padb
->
i_sample_count
+
1
)
/
2
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_reserved1
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_pad2
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_reserved2
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_pad1
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
for
(
i
=
0
;
i
<
i_read
/
2
;
i
++
)
{
if
(
i
>=
count
)
{
MP4_FreeBox_padb
(
p_box
);
goto
error
;
}
p_box
->
data
.
p_padb
->
i_reserved1
[
i
]
=
(
(
*
p_peek
)
>>
7
)
&
0x01
;
p_box
->
data
.
p_padb
->
i_pad2
[
i
]
=
(
(
*
p_peek
)
>>
4
)
&
0x07
;
p_box
->
data
.
p_padb
->
i_reserved1
[
i
]
=
(
(
*
p_peek
)
>>
3
)
&
0x01
;
...
...
@@ -1681,15 +1689,9 @@ static int MP4_ReadBox_padb( stream_t *p_stream, MP4_Box_t *p_box )
i_read
/
2
);
#endif
MP4_READBOX_EXIT
(
1
);
}
static
void
MP4_FreeBox_padb
(
MP4_Box_t
*
p_box
)
{
FREE
(
p_box
->
data
.
p_padb
->
i_reserved1
);
FREE
(
p_box
->
data
.
p_padb
->
i_pad2
);
FREE
(
p_box
->
data
.
p_padb
->
i_reserved2
);
FREE
(
p_box
->
data
.
p_padb
->
i_pad1
);
code
=
1
;
error:
MP4_READBOX_EXIT
(
code
);
}
static
int
MP4_ReadBox_elst
(
stream_t
*
p_stream
,
MP4_Box_t
*
p_box
)
...
...
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