projects
/
oweals
/
uci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f506323
)
file: fix memleak on mktemp() errors
author
Felix Fietkau
<nbd@openwrt.org>
Thu, 24 Oct 2013 21:24:32 +0000
(23:24 +0200)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 24 Oct 2013 21:24:32 +0000
(23:24 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
file.c
patch
|
blob
|
history
diff --git
a/file.c
b/file.c
index 509ed73be0ccd00deb52606293c7855e754cfe5a..44b2e0232cac0dc592301c010e792aba65d12674 100644
(file)
--- a/
file.c
+++ b/
file.c
@@
-703,8
+703,10
@@
static void uci_file_commit(struct uci_context *ctx, struct uci_package **packag
UCI_THROW(ctx, UCI_ERR_MEM);
mktemp(filename);
- if (!*filename)
+ if (!*filename) {
+ free(filename);
UCI_THROW(ctx, UCI_ERR_IO);
+ }
if ((stat(filename, &statbuf) == 0) && ((statbuf.st_mode & S_IFMT) != S_IFREG))
UCI_THROW(ctx, UCI_ERR_IO);