mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
1999-05-18 Thorsten Kukuk <kukuk@suse.de> * nis/nis_lookup.c (nis_lookup): If we run out of memory, close RPC connection.
This commit is contained in:
@ -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>
|
1999-05-18 Jakub Jelinek <jj@ultra.linux.cz>
|
||||||
|
|
||||||
* sysdeps/sparc/sparc64/rawmemchr.S: New file.
|
* sysdeps/sparc/sparc64/rawmemchr.S: New file.
|
||||||
|
@ -127,7 +127,10 @@ nis_lookup (const_nis_name name, const unsigned int flags)
|
|||||||
nis_freeresult (res);
|
nis_freeresult (res);
|
||||||
res = calloc (1, sizeof (nis_result));
|
res = calloc (1, sizeof (nis_result));
|
||||||
if (res == NULL)
|
if (res == NULL)
|
||||||
|
{
|
||||||
|
__nisbind_destroy (&bptr);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
link_first_try = 1; /* Try at first the old binding */
|
link_first_try = 1; /* Try at first the old binding */
|
||||||
goto again;
|
goto again;
|
||||||
|
Reference in New Issue
Block a user