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
44b34340
Commit
44b34340
authored
Mar 26, 2012
by
Piotr Fusik
Committed by
Rémi Denis-Courmont
Apr 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gme: fixed out-of-memory/out-of-range tests
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
0505e064
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/gme.c
modules/demux/gme.c
+2
-2
No files found.
modules/demux/gme.c
View file @
44b34340
...
@@ -262,7 +262,7 @@ static int Control (demux_t *demux, int query, va_list args)
...
@@ -262,7 +262,7 @@ static int Control (demux_t *demux, int query, va_list args)
break
;
break
;
int
seek
=
(
sys
->
titlev
[
sys
->
track_id
]
->
i_length
/
1000
)
*
pos
;
int
seek
=
(
sys
->
titlev
[
sys
->
track_id
]
->
i_length
/
1000
)
*
pos
;
if
(
seek
>
INT_MAX
||
gme_seek
(
sys
->
emu
,
seek
))
if
(
gme_seek
(
sys
->
emu
,
seek
))
break
;
break
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -302,7 +302,7 @@ static int Control (demux_t *demux, int query, va_list args)
...
@@ -302,7 +302,7 @@ static int Control (demux_t *demux, int query, va_list args)
unsigned
n
=
sys
->
titlec
;
unsigned
n
=
sys
->
titlec
;
*
titlev
=
malloc
(
sizeof
(
**
titlev
)
*
n
);
*
titlev
=
malloc
(
sizeof
(
**
titlev
)
*
n
);
if
(
unlikely
(
titlev
==
NULL
))
if
(
unlikely
(
*
titlev
==
NULL
))
n
=
0
;
n
=
0
;
*
titlec
=
n
;
*
titlec
=
n
;
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
...
...
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