From: Ulrich Drepper Date: Fri, 30 Jan 1998 17:07:17 +0000 (+0000) Subject: (lsearch): Return a pointer to the new element if one was "allocated". X-Git-Tag: cvs/before-sparc-2_0_x-branch~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e134d3c6d359717d920840eb2fab240baee850d;p=thirdparty%2Fglibc.git (lsearch): Return a pointer to the new element if one was "allocated". --- diff --git a/misc/lsearch.c b/misc/lsearch.c index 4bc0414088a..68f89be8ca5 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 , 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); }