mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-05 17:36:26 +00:00
Review possible memory leak with my_strndup()
This commit is contained in:
17
src/external/tinyobj_loader_c.h
vendored
17
src/external/tinyobj_loader_c.h
vendored
@@ -453,6 +453,11 @@ static void parseFloat3(float *x, float *y, float *z, const char **token) {
|
|||||||
(*z) = parseFloat(token);
|
(*z) = parseFloat(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static unsigned int my_strnlen(const char *s, unsigned int n) {
|
||||||
|
const char *p = memchr(s, 0, n);
|
||||||
|
return p ? (unsigned int)(p - s) : n;
|
||||||
|
}
|
||||||
|
|
||||||
static char *my_strdup(const char *s, unsigned int max_length) {
|
static char *my_strdup(const char *s, unsigned int max_length) {
|
||||||
char *d;
|
char *d;
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
@@ -478,15 +483,13 @@ static char *my_strndup(const char *s, unsigned int len) {
|
|||||||
if (s == NULL) return NULL;
|
if (s == NULL) return NULL;
|
||||||
if (len == 0) return NULL;
|
if (len == 0) return NULL;
|
||||||
|
|
||||||
d = (char *)TINYOBJ_MALLOC(len + 1); /* + '\0' */
|
slen = my_strnlen(s, len);
|
||||||
slen = strlen(s);
|
d = (char *)TINYOBJ_MALLOC(slen + 1); /* + '\0' */
|
||||||
if (slen < len) {
|
if (!d) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
memcpy(d, s, slen);
|
memcpy(d, s, slen);
|
||||||
d[slen] = '\0';
|
d[slen] = '\0';
|
||||||
} else {
|
|
||||||
memcpy(d, s, len);
|
|
||||||
d[len] = '\0';
|
|
||||||
}
|
|
||||||
|
|
||||||
return d;
|
return d;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user