summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreyk <reyk@openbsd.org>2015-01-03 16:20:31 +0000
committerreyk <reyk@openbsd.org>2015-01-03 16:20:31 +0000
commit44e90ff3904f016f036c554eb5ec61056eb01d42 (patch)
treea0158fe8d8b60a2152a476feb9b210dc8848e5c5
parentFix race condition in perl's ExtUtils::MakeMaker (diff)
downloadwireguard-openbsd-44e90ff3904f016f036c554eb5ec61056eb01d42.tar.xz
wireguard-openbsd-44e90ff3904f016f036c554eb5ec61056eb01d42.zip
Tweak previous - add a missing free in the error path.
-rw-r--r--usr.sbin/httpd/parse.y3
1 files changed, 2 insertions, 1 deletions
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 <reyk@openbsd.org>
@@ -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);
}