changed a memmove() to memcpy() since we don't have to worry about

overlapping segments.
This commit is contained in:
Todd C. Miller
1995-07-12 18:18:41 +00:00
parent 63893680de
commit 9bde08229f

View File

@@ -101,6 +101,6 @@ linear_base(key, base, nelp, width, compar, add_flag)
* manual. * manual.
*/ */
++*nelp; ++*nelp;
(void) memmove(end, key, (size_t)width); (void) memcpy(end, key, width);
return(end); return(end);
} }