diff options
Diffstat (limited to 'nis/nss_nis/nis-ethers.c')
-rw-r--r-- | nis/nss_nis/nis-ethers.c | 8 |
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'; } |