---
 src/output/recorder_output_plugin.c |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/output/recorder_output_plugin.c 
b/src/output/recorder_output_plugin.c
index 346972a..070ef4b 100644
--- a/src/output/recorder_output_plugin.c
+++ b/src/output/recorder_output_plugin.c
@@ -79,23 +79,27 @@ recorder_output_init(G_GNUC_UNUSED const struct 
audio_format *audio_format,
        if (encoder_plugin == NULL) {
                g_set_error(error_r, recorder_output_quark(), 0,
                            "No such encoder: %s", encoder_name);
-               return NULL;
+               goto failure;
        }
 
        recorder->path = config_get_block_string(param, "path", NULL);
        if (recorder->path == NULL) {
                g_set_error(error_r, recorder_output_quark(), 0,
                            "'path' not configured");
-               return NULL;
+               goto failure;
        }
 
        /* initialize encoder */
 
        recorder->encoder = encoder_init(encoder_plugin, param, error_r);
        if (recorder->encoder == NULL)
-               return NULL;
+               goto failure;
 
        return recorder;
+
+failure:
+       g_free(recorder);
+       return NULL;
 }
 
 static void
-- 
1.7.5.4


------------------------------------------------------------------------------
Storage Efficiency Calculator
This modeling tool is based on patent-pending intellectual property that
has been used successfully in hundreds of IBM storage optimization engage-
ments, worldwide.  Store less, Store more with what you own, Move data to 
the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/
_______________________________________________
Musicpd-dev-team mailing list
Musicpd-dev-team@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/musicpd-dev-team

Reply via email to