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
0dbe1bd3
Commit
0dbe1bd3
authored
Jun 15, 2012
by
Naohiro KORIYAMA
Committed by
Jean-Baptiste Kempf
Jun 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: fix memleak
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
7b2d11f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
modules/demux/mkv/matroska_segment_parse.cpp
modules/demux/mkv/matroska_segment_parse.cpp
+4
-1
No files found.
modules/demux/mkv/matroska_segment_parse.cpp
View file @
0dbe1bd3
...
...
@@ -1005,7 +1005,10 @@ void matroska_segment_c::ParseAttachments( KaxAttachments *attachments )
while
(
attachedFile
&&
(
attachedFile
->
GetSize
()
>
0
)
)
{
KaxFileData
&
img_data
=
GetChild
<
KaxFileData
>
(
*
attachedFile
);
attachment_c
*
new_attachment
=
new
attachment_c
(
ToUTF8
(
UTFstring
(
GetChild
<
KaxFileName
>
(
*
attachedFile
)
)
),
char
*
psz_tmp_utf8
=
ToUTF8
(
UTFstring
(
GetChild
<
KaxFileName
>
(
*
attachedFile
)
)
);
std
::
string
attached_filename
(
psz_tmp_utf8
);
free
(
psz_tmp_utf8
);
attachment_c
*
new_attachment
=
new
attachment_c
(
attached_filename
,
GetChild
<
KaxMimeType
>
(
*
attachedFile
),
img_data
.
GetSize
()
);
...
...
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