Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d466d82f
Commit
d466d82f
authored
Nov 09, 2014
by
Luca Barbato
Committed by
Vittorio Giovara
Nov 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvdsubdec: Do not leak on failure path
CC: libav-stable@libav.org Bug-Id: CID 1198262
parent
a42d5c86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
dvdsubdec.c
libavcodec/dvdsubdec.c
+6
-3
No files found.
libavcodec/dvdsubdec.c
View file @
d466d82f
...
@@ -503,6 +503,7 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
...
@@ -503,6 +503,7 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
{
{
DVDSubContext
*
ctx
=
avctx
->
priv_data
;
DVDSubContext
*
ctx
=
avctx
->
priv_data
;
char
*
data
,
*
cur
;
char
*
data
,
*
cur
;
int
ret
=
0
;
if
(
!
avctx
->
extradata
||
!
avctx
->
extradata_size
)
if
(
!
avctx
->
extradata
||
!
avctx
->
extradata_size
)
return
0
;
return
0
;
...
@@ -527,16 +528,18 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
...
@@ -527,16 +528,18 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
}
else
if
(
!
strncmp
(
"size:"
,
cur
,
5
))
{
}
else
if
(
!
strncmp
(
"size:"
,
cur
,
5
))
{
int
w
,
h
;
int
w
,
h
;
if
(
sscanf
(
cur
+
5
,
"%dx%d"
,
&
w
,
&
h
)
==
2
)
{
if
(
sscanf
(
cur
+
5
,
"%dx%d"
,
&
w
,
&
h
)
==
2
)
{
int
ret
=
ff_set_dimensions
(
avctx
,
w
,
h
);
ret
=
ff_set_dimensions
(
avctx
,
w
,
h
);
if
(
ret
<
0
)
if
(
ret
<
0
)
return
ret
;
goto
fail
;
}
}
}
}
cur
+=
strcspn
(
cur
,
"
\n\r
"
);
cur
+=
strcspn
(
cur
,
"
\n\r
"
);
cur
+=
strspn
(
cur
,
"
\n\r
"
);
cur
+=
strspn
(
cur
,
"
\n\r
"
);
}
}
fail:
av_free
(
data
);
av_free
(
data
);
return
0
;
return
ret
;
}
}
AVCodec
ff_dvdsub_decoder
=
{
AVCodec
ff_dvdsub_decoder
=
{
...
...
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