mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
d6593503c6
David Carne <davidcarne@gmail.com> * libc/string/strndup_r.c (_strndup_r): Use strnlen logic instead of strlen to determine number of bytes to copy. * libc/string/strnlen.c (strnlen): Fix so check for max limit occurs before looking at storage location.
28 lines
450 B
C
28 lines
450 B
C
#include <reent.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char *
|
|
_DEFUN (_strndup_r, (reent_ptr, str, n),
|
|
struct _reent *reent_ptr _AND
|
|
_CONST char *str _AND
|
|
size_t n)
|
|
{
|
|
_CONST char *ptr = str;
|
|
size_t len;
|
|
char *copy;
|
|
|
|
while (n-- > 0 && *ptr)
|
|
ptr++;
|
|
|
|
len = ptr - str;
|
|
|
|
copy = _malloc_r (reent_ptr, len + 1);
|
|
if (copy)
|
|
{
|
|
memcpy (copy, str, len);
|
|
copy[len] = '\0';
|
|
}
|
|
return copy;
|
|
}
|