Searched refs:newData (Results 1 – 1 of 1) sorted by relevance
178 char *newData = origData; in appendBuffer() local182 newData = (char *)realloc(origData, maxLen+1); /* remember space for trailing null!! */ in appendBuffer()183 if (!newData) { in appendBuffer()191 memcpy(newData + curLen, appendData, appendLen); in appendBuffer()193 strcpy(newData+curLen, appendData); in appendBuffer()196 return newData; in appendBuffer()