summaryrefslogtreecommitdiff
path: root/usr.sbin/btctl/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 /usr.sbin/btctl/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 'usr.sbin/btctl/parse.y')
-rw-r--r--usr.sbin/btctl/parse.y10
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.sbin/btctl/parse.y b/usr.sbin/btctl/parse.y
index 3de313b1d9c..3158896b901 100644
--- a/usr.sbin/btctl/parse.y
+++ b/usr.sbin/btctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.5 2008/12/01 23:32:18 deraadt Exp $ */
+/* $OpenBSD: parse.y,v 1.6 2009/03/31 21:03:48 tobias Exp $ */
/*
* Copyright (c) 2008 Uwe Stuehler <uwe@openbsd.org>
@@ -486,11 +486,15 @@ pushfile(const char *name)
{
struct file *nfile;
- if ((nfile = calloc(1, sizeof(struct file))) == NULL ||
- (nfile->name = strdup(name)) == NULL) {
+ if ((nfile = calloc(1, sizeof(struct file))) == NULL) {
log_warn("malloc");
return (NULL);
}
+ if ((nfile->name = strdup(name)) == NULL) {
+ log_warn("malloc");
+ free(nfile);
+ return (NULL);
+ }
if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
log_warn("%s", nfile->name);
free(nfile->name);