summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2008-06-09 18:26:35 +0000
committerderaadt <deraadt@openbsd.org>2008-06-09 18:26:35 +0000
commit35757d17647ecb87d40cb5606ce6d0f9d1452903 (patch)
treef03371d765d670c14fdc400a255fa8d0df38b447
parentDon't generate putty keys if we're not going to use them. ok djm (diff)
downloadwireguard-openbsd-35757d17647ecb87d40cb5606ce6d0f9d1452903.tar.xz
wireguard-openbsd-35757d17647ecb87d40cb5606ce6d0f9d1452903.zip
do not leak memory on failure in refid production; ok ckuethe henning
-rw-r--r--usr.sbin/ntpd/parse.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ntpd/parse.y b/usr.sbin/ntpd/parse.y
index 252ee7e87e1..d61d6eee125 100644
--- a/usr.sbin/ntpd/parse.y
+++ b/usr.sbin/ntpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.43 2008/06/09 16:37:35 ckuethe Exp $ */
+/* $OpenBSD: parse.y,v 1.44 2008/06/09 18:26:35 deraadt Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -261,11 +261,11 @@ correction : CORRECTION NUMBER {
;
refid : REFID STRING {
- size_t l;
- l = strlen($2);
+ size_t l = strlen($2);
+
if (l < 1 || l > 4) {
- yyerror("refid must be a string of 1 to 4 "
- "characters");
+ yyerror("refid must be 1 to 4 characters");
+ free($2);
YYERROR;
}
opts.refstr = $2;