Searched refs:maxLen (Results 1 – 1 of 1) sorted by relevance
174 size_t maxLen = *pMaxLen; in appendBuffer() local180 if (newLen > maxLen) { in appendBuffer()181 maxLen = newLen + BUFSIZ; in appendBuffer()182 newData = (char *)realloc(origData, maxLen+1); /* remember space for trailing null!! */ in appendBuffer()187 *pMaxLen = maxLen; in appendBuffer()