Home
last modified time | relevance | path

Searched refs:newData (Results 1 – 1 of 1) sorted by relevance

/CafeSDK-2.12.13/system/src/tool/gfx/projects/gshCompile/
DgshCompile.cpp171 char *newData = origData; in appendBuffer() local
176 newData = (char *)realloc(origData, maxLen+1); /* remember space for trailing null!! */ in appendBuffer()
177 if (!newData) { in appendBuffer()
185 strcpy_s(newData, maxLen, appendData); in appendBuffer()
187 strcat_s(newData, maxLen+1, appendData); in appendBuffer()
189 return newData; in appendBuffer()