mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
portable_strndup() must not read source string beyond NUL byte.
POSIX strndup() does not read memory beyond NUL byte of the source string. Preserve this behavior in libexpat implementation to prevent access violations and keep portability.
This commit is contained in:
parent
03ff328b5c
commit
5b9e8dc70c
1 changed files with 10 additions and 1 deletions
|
@ -303,7 +303,14 @@ duff_reallocator(void *ptr, size_t size) {
|
|||
return realloc(ptr, size);
|
||||
}
|
||||
|
||||
// Portable remake of strndup(3) for C99; does not care about space efficiency
|
||||
// Portable remake of strnlen(3) for C99
|
||||
static size_t
|
||||
portable_strnlen(const char *s, size_t maxlen) {
|
||||
const char *const end = (const char *)memchr(s, '\0', maxlen);
|
||||
return (end == NULL) ? maxlen : (size_t)(end - s);
|
||||
}
|
||||
|
||||
// Portable remake of strndup(3) for C99
|
||||
char *
|
||||
portable_strndup(const char *s, size_t n) {
|
||||
if ((s == NULL) || (n == SIZE_MAX)) {
|
||||
|
@ -311,6 +318,8 @@ portable_strndup(const char *s, size_t n) {
|
|||
return NULL;
|
||||
}
|
||||
|
||||
n = portable_strnlen(s, n);
|
||||
|
||||
char *const buffer = (char *)malloc(n + 1);
|
||||
if (buffer == NULL) {
|
||||
errno = ENOMEM;
|
||||
|
|
Loading…
Add table
Reference in a new issue