Commit 976d4237 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

Fix potential memleak (CID 196)

w00t, my first CID fix :D
parent 79aa7396
...@@ -257,7 +257,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item, ...@@ -257,7 +257,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
psz_parser = val.psz_string; psz_parser = val.psz_string;
while( (psz_start = strchr( psz_parser, '{' ) ) ) while( (psz_start = strchr( psz_parser, '{' ) ) )
{ {
seekpoint_t *p_seekpoint = vlc_seekpoint_New(); seekpoint_t *p_seekpoint;
char backup; char backup;
psz_start++; psz_start++;
psz_end = strchr( psz_start, '}' ); psz_end = strchr( psz_start, '}' );
...@@ -266,6 +266,8 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item, ...@@ -266,6 +266,8 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
backup = *psz_parser; backup = *psz_parser;
*psz_parser = 0; *psz_parser = 0;
*psz_end = ','; *psz_end = ',';
p_seekpoint = vlc_seekpoint_New();
while( (psz_end = strchr( psz_start, ',' ) ) ) while( (psz_end = strchr( psz_start, ',' ) ) )
{ {
*psz_end = 0; *psz_end = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment