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
Gautam Chitnis
web-ui-redesign
Commits
395d0372
Commit
395d0372
authored
Dec 23, 2007
by
Pierre d'Herbemont
Browse files
modules/control/http: Fix input_item memleak.
parent
694be9ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/control/http/macro.c
View file @
395d0372
...
...
@@ -345,6 +345,7 @@ static void MacroDo( httpd_file_sys_t *p_args,
playlist_AddInput
(
p_sys
->
p_playlist
,
p_input
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
VLC_TRUE
,
VLC_FALSE
);
vlc_gc_decref
(
p_input
);
msg_Dbg
(
p_intf
,
"requested mrl add: %s"
,
mrl
);
}
free
(
psz_uri
);
...
...
modules/control/http/rpn.c
View file @
395d0372
...
...
@@ -844,6 +844,7 @@ void E_(EvaluateRPN)( intf_thread_t *p_intf, mvar_t *vars,
i_ret
=
playlist_AddInput
(
p_sys
->
p_playlist
,
p_input
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
VLC_TRUE
,
VLC_FALSE
);
vlc_gc_decref
(
p_input
);
msg_Dbg
(
p_intf
,
"requested mrl add: %s"
,
mrl
);
}
free
(
psz_uri
);
...
...
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