From 44e90ff3904f016f036c554eb5ec61056eb01d42 Mon Sep 17 00:00:00 2001 From: reyk Date: Sat, 3 Jan 2015 16:20:31 +0000 Subject: [PATCH] Tweak previous - add a missing free in the error path. --- usr.sbin/httpd/parse.y | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.sbin/httpd/parse.y b/usr.sbin/httpd/parse.y index 145d99c793c..860c2ae7c3a 100644 --- a/usr.sbin/httpd/parse.y +++ b/usr.sbin/httpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.47 2015/01/03 15:49:18 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.48 2015/01/03 16:20:31 reyk Exp $ */ /* * Copyright (c) 2007 - 2014 Reyk Floeter @@ -1744,6 +1744,7 @@ server_inherit(struct server *src, const char *name, dst->srv_conf.id = ++last_server_id; if (last_server_id == INT_MAX) { yyerror("too many servers defined"); + serverconfig_free(&dst->srv_conf); free(dst); return (NULL); } -- 2.20.1