Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
cb89f6d5
Commit
cb89f6d5
authored
Oct 08, 2008
by
ivoire
Browse files
Fix potential memleak (CID 260)
parent
4201cd2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/subtitle.c
View file @
cb89f6d5
...
...
@@ -1902,7 +1902,10 @@ static int ParseRealText( demux_t *p_demux, subtitle_t *p_subtitle, int i_idx )
const
char
*
s
=
TextGetLine
(
txt
);
if
(
!
s
)
{
free
(
psz_text
);
return
VLC_EGENERIC
;
}
int
i_len
=
strlen
(
s
);
if
(
i_len
==
0
)
break
;
...
...
Write
Preview
Supports
Markdown
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