diff options
author | Koen Kooi <koen@openembedded.org> | 2007-10-12 07:53:43 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-10-12 07:53:43 +0000 |
commit | c751ec57bd75446f7dbc99e1c5a403b383cc0b48 (patch) | |
tree | 2cbdcfb16daac74347b9300a1759526602a48e61 /packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch | |
parent | a812a5fd154c5d08c214190e49111006588d011c (diff) |
uclibc 0.9.29: add patches from buildrot to fix mmap
Diffstat (limited to 'packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch')
-rw-r--r-- | packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch b/packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch new file mode 100644 index 0000000000..7b246c1ad7 --- /dev/null +++ b/packages/uclibc/uclibc-0.9.29/uClibc-0.9.29-fix-gethostent_r-failure-retval.patch @@ -0,0 +1,12 @@ +diff -ur uClibc-0.9.29/libc/inet/resolv.c uClibc-0.9.29-patched/libc/inet/resolv.c +--- uClibc-0.9.29/libc/inet/resolv.c 2007-04-23 12:01:05.000000000 -0500 ++++ uClibc-0.9.29-patched/libc/inet/resolv.c 2007-05-09 18:05:33.563404419 -0500 +@@ -1700,7 +1700,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) { |