Signed-off-by: Junio C Hamano <gits...@pobox.com>
---
 builtin/am.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/builtin/am.c b/builtin/am.c
index ec75906..f1a84c6 100644
--- a/builtin/am.c
+++ b/builtin/am.c
@@ -842,9 +842,11 @@ static int split_mail_stgit_series(struct am_state *state, 
const char **paths,
        series_dir = dirname(series_dir_buf);
 
        fp = fopen(*paths, "r");
-       if (!fp)
+       if (!fp) {
+               free(series_dir_buf);
                return error(_("could not open '%s' for reading: %s"), *paths,
                                strerror(errno));
+       }
 
        while (!strbuf_getline(&sb, fp, '\n')) {
                if (*sb.buf == '#')
-- 
2.8.2-679-g91c6421

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to