summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index e0b09d1a4..8cf804ad6 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -659,6 +659,10 @@ static int http_plugin_get_optional_data (input_plugin_t *this_gen,
return INPUT_OPTIONAL_UNSUPPORTED;
}
+static int http_plugin_dispose (input_plugin_t *this_gen ) {
+ free (this_gen);
+}
+
input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
http_input_plugin_t *this;
@@ -696,6 +700,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
this->input_plugin.get_identifier = http_plugin_get_identifier;
this->input_plugin.get_autoplay_list = NULL;
this->input_plugin.get_optional_data = http_plugin_get_optional_data;
+ this->input_plugin.dispose = http_plugin_dispose;
this->input_plugin.is_branch_possible= NULL;
this->fh = -1;