Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
1999-05-18  Thorsten Kukuk  <kukuk@suse.de>

	* nis/nis_lookup.c (nis_lookup): If we run out of memory, close
	RPC connection.
  • Loading branch information
Ulrich Drepper committed May 18, 1999
1 parent 37206c3 commit 2acd8fc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
1999-05-18 Thorsten Kukuk <kukuk@suse.de>

* nis/nis_lookup.c (nis_lookup): If we run out of memory, close
RPC connection.

1999-05-18 Jakub Jelinek <jj@ultra.linux.cz>

* sysdeps/sparc/sparc64/rawmemchr.S: New file.
Expand Down
2 changes: 1 addition & 1 deletion linuxthreads/manager.c
Expand Up @@ -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 */
{
Expand Down
5 changes: 4 additions & 1 deletion nis/nis_lookup.c
Expand Up @@ -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;
Expand Down

0 comments on commit 2acd8fc

Please sign in to comment.