summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2007-02-05 14:01:08 +0100
committerBernhard Reutner-Fischer2007-02-05 14:01:08 +0100
commitba63b4cc42c0a3b48404747a5eb4d5a16870dd3a (patch)
tree165c04787a6533119f91802753b08bfb98f3f0d1 /toolchain
parent- delete old, unneeded patch (diff)
downloadbuildroot-ba63b4cc42c0a3b48404747a5eb4d5a16870dd3a.tar.gz
buildroot-ba63b4cc42c0a3b48404747a5eb4d5a16870dd3a.tar.xz
buildroot-ba63b4cc42c0a3b48404747a5eb4d5a16870dd3a.zip
- proposed fix for gethostent_r: if no host was found, return HOST_NOT_FOUND instead of garbage.
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch b/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
new file mode 100644
index 000000000..eb6141a5d
--- /dev/null
+++ b/toolchain/uClibc/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch
@@ -0,0 +1,13 @@
+Index: uClibc/libc/inet/resolv.c
+===================================================================
+--- uClibc/libc/inet/resolv.c (revision 17775)
++++ uClibc/libc/inet/resolv.c (working copy)
+@@ -1689,7 +1689,7 @@
+ int gethostent_r(struct hostent *result_buf, char *buf, size_t buflen,
+ struct hostent **result, int *h_errnop)
+ {
+- int ret;
++ int ret = HOST_NOT_FOUND;
+
+ __UCLIBC_MUTEX_LOCK(mylock);
+ if (__gethostent_fp == NULL) {