diff options
Diffstat (limited to 'src/decoder/mod_plugin.c')
-rw-r--r-- | src/decoder/mod_plugin.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/decoder/mod_plugin.c b/src/decoder/mod_plugin.c index a391b2c77..a95f5345c 100644 --- a/src/decoder/mod_plugin.c +++ b/src/decoder/mod_plugin.c @@ -172,7 +172,6 @@ mod_decode(struct decoder *decoder, const char *path) if (!(data = mod_open(path))) { ERROR("failed to open mod: %s\n", path); - MikMod_Exit(); return; } @@ -195,8 +194,6 @@ mod_decode(struct decoder *decoder, const char *path) } mod_close(data); - - MikMod_Exit(); } static struct tag *modTagDup(const char *file) @@ -212,7 +209,6 @@ static struct tag *modTagDup(const char *file) if (moduleHandle == NULL) { DEBUG("modTagDup: Failed to open file: %s\n", file); - MikMod_Exit(); return NULL; } @@ -228,8 +224,6 @@ static struct tag *modTagDup(const char *file) if (title) tag_add_item(ret, TAG_ITEM_TITLE, title); - MikMod_Exit(); - return ret; } |