Searched defs:ppszFile (Results 1 - 1 of 1) sorted by relevance

/vbox/src/bldprogs/
H A Dfilesplitter.cpp154 * @param ppszFile Where to return the buffer.
157 static int readFile(const char *pcszFile, char **ppszFile, size_t *pcchFile) argument
170 *ppszFile = (char *)malloc(FileStat.st_size + 1);
171 if (*ppszFile)
174 size_t cbRead = fread(*ppszFile, 1, FileStat.st_size, pFile);
180 (*ppszFile)[cbRead] = '\0';
190 free(*ppszFile);
191 *ppszFile = NULL;

Completed in 43 milliseconds