summaryrefslogtreecommitdiff
path: root/usr.sbin/snmpd
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/snmpd
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/snmpd')
-rw-r--r--usr.sbin/snmpd/parse.y10
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.sbin/snmpd/parse.y b/usr.sbin/snmpd/parse.y
index 6cb6dc6eb0a..a5fe7e23e8f 100644
--- a/usr.sbin/snmpd/parse.y
+++ b/usr.sbin/snmpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.16 2008/10/17 13:02:55 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.17 2009/03/31 21:03:49 tobias Exp $ */
/*
* Copyright (c) 2007, 2008 Reyk Floeter <reyk@vantronix.net>
@@ -674,11 +674,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) {
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);