From: Ulrich Drepper Date: Tue, 18 May 1999 13:04:17 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.20~20249 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2acd8fcfc4b8c76f34a304087c7a539102eddb6b;p=platform%2Fupstream%2Flinaro-glibc.git Update. 1999-05-18 Thorsten Kukuk * nis/nis_lookup.c (nis_lookup): If we run out of memory, close RPC connection. --- diff --git a/ChangeLog b/ChangeLog index 6932171..7134da3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-05-18 Thorsten Kukuk + + * nis/nis_lookup.c (nis_lookup): If we run out of memory, close + RPC connection. + 1999-05-18 Jakub Jelinek * sysdeps/sparc/sparc64/rawmemchr.S: New file. diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index eee4b5c..f390aa1 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -193,7 +193,7 @@ static int pthread_start_thread(void *arg) __sched_setscheduler(THREAD_GETMEM(self, p_pid), THREAD_GETMEM(self, p_start_args.schedpolicy), &self->p_start_args.schedparam); -else if (__pthread_manager_thread.p_priority > 0) + else if (__pthread_manager_thread.p_priority > 0) /* Default scheduling required, but thread manager runs in realtime scheduling: switch new thread to SCHED_OTHER policy */ { diff --git a/nis/nis_lookup.c b/nis/nis_lookup.c index cdc5b3f..646b15d 100644 --- a/nis/nis_lookup.c +++ b/nis/nis_lookup.c @@ -127,7 +127,10 @@ nis_lookup (const_nis_name name, const unsigned int flags) nis_freeresult (res); res = calloc (1, sizeof (nis_result)); if (res == NULL) - return NULL; + { + __nisbind_destroy (&bptr); + return NULL; + } link_first_try = 1; /* Try at first the old binding */ goto again;