Searched refs:oldlen (Results 1 – 1 of 1) sorted by relevance
194 size_t oldlen = *accumulate ? strlen(*accumulate) : 0; in string_realloc_append() local196 if (oldlen > SSIZE_MAX || morelen > SSIZE_MAX - oldlen) { in string_realloc_append()201 *accumulate = xrealloc(*accumulate, oldlen + morelen); in string_realloc_append()202 memcpy(*accumulate + oldlen, more, morelen); in string_realloc_append()
Completed in 7 milliseconds