2006-02-13 Jeff Johnston <jjohnstn@redhat.com>
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.
This commit is contained in:
parent
3801e59ad8
commit
d6593503c6
|
@ -1,3 +1,11 @@
|
||||||
|
2006-02-13 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
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.
|
||||||
|
|
||||||
2006-02-07 Paul Brook <paul@codesourcery.com>
|
2006-02-07 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
* libc/machine/arm/setjmp.S: Add Thumb-2 support.
|
* libc/machine/arm/setjmp.S: Add Thumb-2 support.
|
||||||
|
|
|
@ -2,16 +2,22 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
||||||
|
|
||||||
char *
|
char *
|
||||||
_DEFUN (_strndup_r, (reent_ptr, str, n),
|
_DEFUN (_strndup_r, (reent_ptr, str, n),
|
||||||
struct _reent *reent_ptr _AND
|
struct _reent *reent_ptr _AND
|
||||||
_CONST char *str _AND
|
_CONST char *str _AND
|
||||||
size_t n)
|
size_t n)
|
||||||
{
|
{
|
||||||
size_t len = MIN(strlen (str), n);
|
_CONST char *ptr = str;
|
||||||
char *copy = _malloc_r (reent_ptr, len + 1);
|
size_t len;
|
||||||
|
char *copy;
|
||||||
|
|
||||||
|
while (n-- > 0 && *ptr)
|
||||||
|
ptr++;
|
||||||
|
|
||||||
|
len = ptr - str;
|
||||||
|
|
||||||
|
copy = _malloc_r (reent_ptr, len + 1);
|
||||||
if (copy)
|
if (copy)
|
||||||
{
|
{
|
||||||
memcpy (copy, str, len);
|
memcpy (copy, str, len);
|
||||||
|
|
|
@ -42,7 +42,7 @@ _DEFUN (strnlen, (str, n),
|
||||||
{
|
{
|
||||||
_CONST char *start = str;
|
_CONST char *start = str;
|
||||||
|
|
||||||
while (*str && n-- > 0)
|
while (n-- > 0 && *str)
|
||||||
str++;
|
str++;
|
||||||
|
|
||||||
return str - start;
|
return str - start;
|
||||||
|
|
Loading…
Reference in New Issue