projects
/
nfs-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
993ec3f
)
Fix memory leak in mountd.
author
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Fri, 16 Mar 2007 00:26:35 +0000
(11:26 +1100)
committer
Neil Brown
<neilb@suse.de>
Fri, 16 Mar 2007 00:26:35 +0000
(11:26 +1100)
Signed-off-by: Neil Brown <neilb@suse.de>
support/export/client.c
patch
|
blob
|
history
diff --git
a/support/export/client.c
b/support/export/client.c
index
33dfdb0
..
686c744
100644
(file)
--- a/
support/export/client.c
+++ b/
support/export/client.c
@@
-329,6
+329,7
@@
add_name(char *old, char *add)
strcat(new, ",");
strcat(new, cp);
}
+ free(old);
return new;
}