diff --git a/match.c b/match.c index aeba4bb77..ca93cb06e 100644 --- a/match.c +++ b/match.c @@ -1,4 +1,4 @@ -/* $OpenBSD: match.c,v 1.34 2017/02/03 23:01:19 djm Exp $ */ +/* $OpenBSD: match.c,v 1.35 2017/02/15 23:38:31 jsg Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -297,8 +297,11 @@ match_filter_list(const char *proposal, const char *filter) char *orig_prop = strdup(proposal); char *cp, *tmp; - if (fix_prop == NULL || orig_prop == NULL) + if (fix_prop == NULL || orig_prop == NULL) { + free(orig_prop); + free(fix_prop); return NULL; + } tmp = orig_prop; *fix_prop = '\0';