input_stream: added function input_stream_deinit()

All close() implementations must call this method.
This commit is contained in:
Max Kellermann
2010-01-18 09:57:53 +01:00
parent a0a26d3341
commit fb9bd53328
9 changed files with 16 additions and 2 deletions

View File

@@ -103,6 +103,7 @@ input_mms_close(struct input_stream *is)
struct input_mms *m = (struct input_mms *)is;
mmsx_close(m->mms);
input_stream_deinit(&m->base);
g_free(m);
}