summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl/parse.y
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2009-03-31 21:03:50 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2009-03-31 21:03:50 +0000
commitd1f46a5bae81083eb4d20a65b677c8159dadb2a2 (patch)
treeed98e68c11b6221bd5077066cf218fd07f6cce05 /sbin/ipsecctl/parse.y
parent9b03618dbfb1bc94a0cd3d53ea0e26dc12a627c7 (diff)
Fixed memory leaks which would occur if the second of two memory
allocations fails. looks right deraadt, krw ok henning
Diffstat (limited to 'sbin/ipsecctl/parse.y')
-rw-r--r--sbin/ipsecctl/parse.y10
1 files changed, 7 insertions, 3 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index 7e9f609b9db..5fa6ed91775 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.144 2009/01/30 14:24:52 bluhm Exp $ */
+/* $OpenBSD: parse.y,v 1.145 2009/03/31 21:03:48 tobias Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1243,11 +1243,15 @@ pushfile(const char *name, int secret)
{
struct file *nfile;
- if ((nfile = calloc(1, sizeof(struct file))) == NULL ||
- (nfile->name = strdup(name)) == NULL) {
+ if ((nfile = calloc(1, sizeof(struct file))) == NULL) {
warn("malloc");
return (NULL);
}
+ if ((nfile->name = strdup(name)) == NULL) {
+ warn("malloc");
+ free(nfile);
+ return (NULL);
+ }
if (TAILQ_FIRST(&files) == NULL && strcmp(nfile->name, "-") == 0) {
nfile->stream = stdin;
free(nfile->name);