aboutsummaryrefslogtreecommitdiff
path: root/src/input/mms_input_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-05-18 20:57:57 +0200
committerMax Kellermann <max@duempel.org>2010-05-18 20:57:57 +0200
commite98bd55cbf850f17fa3b7339c659791834e9aaa8 (patch)
tree5f7efffe1f47288d15708e57c8080eb7e3afbdc3 /src/input/mms_input_plugin.c
parenta1a03deed278a865bdc7d3394cda838543c8b03c (diff)
input/mms: fix memory leak in error handler
Diffstat (limited to 'src/input/mms_input_plugin.c')
-rw-r--r--src/input/mms_input_plugin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input/mms_input_plugin.c b/src/input/mms_input_plugin.c
index 2a3c5377..eb3a5ced 100644
--- a/src/input/mms_input_plugin.c
+++ b/src/input/mms_input_plugin.c
@@ -49,6 +49,7 @@ input_mms_open(struct input_stream *is, const char *url)
m = g_new(struct input_mms, 1);
m->mms = mmsx_connect(NULL, NULL, url, 128 * 1024);
if (m->mms == NULL) {
+ g_free(m);
g_warning("mmsx_connect() failed");
return false;
}