about summary refs log tree commit diff
path: root/nis/nss_nis/nis-ethers.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-17 18:34:30 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-17 18:34:30 +0000
commit3b965a7dea3c0c732d46bdb3087364dc0c177b77 (patch)
tree63c18f0e56641a5cf5c34df2f947c45613710040 /nis/nss_nis/nis-ethers.c
parent96888079ea67d0b4ff93d950777ccf1266f0e23e (diff)
downloadglibc-3b965a7dea3c0c732d46bdb3087364dc0c177b77.tar.gz
glibc-3b965a7dea3c0c732d46bdb3087364dc0c177b77.tar.xz
glibc-3b965a7dea3c0c732d46bdb3087364dc0c177b77.zip
Update.
2000-03-16  Thorsten Kukuk  <kukuk@suse.de>

	* nis/nss_nis/nis-ethers.c: Return with error if malloc fails.
	* nis/nss_compat/compat-initgroups.c: Likewise.
	* nis/nss_nis/nis-initgroups.c: Likewise.
	* nis/nss_nis/nis-netgrp.c: Likewise.
	* nis/nss_nis/nis-proto.c: Likewise.
	* nis/nss_nis/nis-rpc.c: Likewise.
	* nis/nss_nis/nis-service.c: Likewise.
	* nis/ypclnt.c: Likewise.
	
	doesn't exist, correct checks.  Fixes PR libc/1649.
Diffstat (limited to 'nis/nss_nis/nis-ethers.c')
-rw-r--r--nis/nss_nis/nis-ethers.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/nis/nss_nis/nis-ethers.c b/nis/nss_nis/nis-ethers.c
index c1ea32adc5..c90091748e 100644
--- a/nis/nss_nis/nis-ethers.c
+++ b/nis/nss_nis/nis-ethers.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Thorsten Kukuk <kukuk@suse.de>, 1996.
 
@@ -64,15 +64,21 @@ saveit (int instatus, char *inkey, int inkeylen, char *inval,
       if (start == NULL)
 	{
 	  start = malloc (sizeof (struct response));
+	  if (start == NULL)
+	    return YP_FALSE;
 	  next = start;
 	}
       else
 	{
 	  next->next = malloc (sizeof (struct response));
+	  if (next->next == NULL)
+	    return YP_FALSE;
 	  next = next->next;
 	}
       next->next = NULL;
       next->val = malloc (invallen + 1);
+      if (next->val == NULL)
+	return YP_FALSE;
       strncpy (next->val, inval, invallen);
       next->val[invallen] = '\0';
     }