about summary refs log tree commit diff
path: root/misc/lsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/lsearch.c')
-rw-r--r--misc/lsearch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/lsearch.c b/misc/lsearch.c
index 4bc0414088..68f89be8ca 100644
--- a/misc/lsearch.c
+++ b/misc/lsearch.c
@@ -1,5 +1,5 @@
 /* Linear search functions.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -33,7 +33,7 @@ lsearch (const void *key, void *base, size_t *nmemb, size_t size,
   if (result == NULL)
     {
       /* Not available.  Insert at the end.  */
-      memcpy (base + (*nmemb) * size, key, size);
+      result = memcpy (base + (*nmemb) * size, key, size);
       ++(*nmemb);
     }