From: reyk Date: Sat, 3 Jan 2015 16:20:31 +0000 (+0000) Subject: Tweak previous - add a missing free in the error path. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=44e90ff3904f016f036c554eb5ec61056eb01d42;p=openbsd Tweak previous - add a missing free in the error path. --- 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); }