summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-04-13 23:18:54 +0000
committerDavid Hankins <dhankins@isc.org>2007-04-13 23:18:54 +0000
commit5b72f7384ef5ac34de7c2ab554f97fd99c7350e8 (patch)
treed603830d1a2cbc23d926e0ffdbb32a8c69395447
parentd630703988d8b09071d5e5d9b4bc177e11e09d3e (diff)
downloadisc-dhcp-4_0_0_2007041300.tar.gz
Goto cleanup only after creating the mess.v4_0_0_2007041300
-rw-r--r--common/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/options.c b/common/options.c
index 56cafc26..48943293 100644
--- a/common/options.c
+++ b/common/options.c
@@ -34,7 +34,7 @@
#ifndef lint
static char copyright[] =
-"$Id: options.c,v 1.92.2.18 2007/04/12 22:31:17 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
+"$Id: options.c,v 1.92.2.19 2007/04/13 23:18:54 dhankins Exp $ Copyright (c) 2004-2006 Internet Systems Consortium. All rights reserved.\n";
#endif /* not lint */
#define DHCP_OPTION_DATA
@@ -3088,7 +3088,7 @@ fqdn6_option_space_encapsulate(struct data_string *result,
head = ((struct option_chain_head *)
cfg_options->universes[fqdn_universe.index]);
if (head == NULL)
- goto exit;
+ return 0;
memset(results, 0, sizeof(results));
for (ocp = head->first ; ocp != NULL ; ocp = ocp->cdr) {