Searched refs:shortPath (Results 1 – 2 of 2) sorted by relevance
60 TCHAR *shortPath = (TCHAR *)malloc(lenShort * sizeof(TCHAR)); in toShortPath() local62 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()65 free(shortPath); in toShortPath()67 shortPath = (TCHAR *)malloc(length); in toShortPath()68 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()72 mPath = CPath(shortPath); in toShortPath()75 free(shortPath); in toShortPath()
334 char * shortPath = (char *)malloc(lenShort); in toShortPath() local336 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()339 free(shortPath); in toShortPath()341 shortPath = (char *)malloc(length); in toShortPath()342 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()345 if (length != 0) dest->set(shortPath); in toShortPath()347 free(shortPath); in toShortPath()