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
3eb56e84
Commit
3eb56e84
authored
Aug 05, 2012
by
Philip Langdale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Fix unfreed memory found by valgrind.
Signed-off-by:
Philip Langdale
<
philipl@overt.org
>
parent
8d6f46ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
movenc.c
libavformat/movenc.c
+2
-1
No files found.
libavformat/movenc.c
View file @
3eb56e84
...
@@ -3154,11 +3154,12 @@ static int mov_write_subtitle_end_packet(AVFormatContext *s,
...
@@ -3154,11 +3154,12 @@ static int mov_write_subtitle_end_packet(AVFormatContext *s,
int
stream_index
,
int
stream_index
,
int64_t
dts
)
{
int64_t
dts
)
{
AVPacket
end
;
AVPacket
end
;
short
data
=
0
;
int
ret
;
int
ret
;
av_init_packet
(
&
end
);
av_init_packet
(
&
end
);
end
.
size
=
sizeof
(
short
);
end
.
size
=
sizeof
(
short
);
end
.
data
=
av_mallocz
(
end
.
size
)
;
end
.
data
=
(
char
*
)
&
data
;
end
.
pts
=
dts
;
end
.
pts
=
dts
;
end
.
dts
=
dts
;
end
.
dts
=
dts
;
end
.
duration
=
0
;
end
.
duration
=
0
;
...
...
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