aboutsummaryrefslogtreecommitdiffstats
path: root/src/input_stream.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-01-18 09:57:53 +0100
committerMax Kellermann <max@duempel.org>2010-01-18 09:57:53 +0100
commitfb9bd53328e3ff57ea4b3cfee24068f9fb54927b (patch)
treee350fdb14ebf8916897797c59527f25d703d3883 /src/input_stream.c
parenta0a26d3341022552984a3307393a8f701f350edc (diff)
downloadmpd-fb9bd53328e3ff57ea4b3cfee24068f9fb54927b.tar.gz
mpd-fb9bd53328e3ff57ea4b3cfee24068f9fb54927b.tar.xz
mpd-fb9bd53328e3ff57ea4b3cfee24068f9fb54927b.zip
input_stream: added function input_stream_deinit()
All close() implementations must call this method.
Diffstat (limited to 'src/input_stream.c')
-rw-r--r--src/input_stream.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input_stream.c b/src/input_stream.c
index 96c692176..e769adb92 100644
--- a/src/input_stream.c
+++ b/src/input_stream.c
@@ -99,8 +99,6 @@ input_stream_read(struct input_stream *is, void *ptr, size_t size,
void input_stream_close(struct input_stream *is)
{
- g_free(is->mime);
-
is->plugin->close(is);
}