projects
/
platform
/
upstream
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09da627
)
This patch from Magnus Damm fixed a long standing problem
author
Eric Andersen
<andersen@codepoet.org>
Fri, 25 Oct 2002 12:14:02 +0000
(12:14 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Fri, 25 Oct 2002 12:14:02 +0000
(12:14 -0000)
with freeing memory.
networking/tftp.c
patch
|
blob
|
history
diff --git
a/networking/tftp.c
b/networking/tftp.c
index
1ca3e41
..
1e1105b
100644
(file)
--- a/
networking/tftp.c
+++ b/
networking/tftp.c
@@
-475,7
+475,7
@@
static inline int tftp(const int cmd, const struct hostent *host,
#ifdef CONFIG_FEATURE_CLEAN_UP
close(socketfd);
-
RELEASE_CONFIG_BUFFER
(buf);
+
free
(buf);
#endif
return finished ? EXIT_SUCCESS : EXIT_FAILURE;