Home
last modified time | relevance | path

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

/reactos/dll/win32/ole32/
H A Dfilemoniker.c926 LPOLESTR *stringTable2 = NULL, commonPath = NULL; in FileMonikerImpl_CommonPrefixWith() local
976 commonPath = CoTaskMemAlloc(sizeof(WCHAR)*(min(lstrlenW(pathThis),lstrlenW(pathOther))+1)); in FileMonikerImpl_CommonPrefixWith()
977 if (!commonPath) { in FileMonikerImpl_CommonPrefixWith()
982 *commonPath = 0; in FileMonikerImpl_CommonPrefixWith()
1005 lstrcatW(commonPath,stringTable1[i]); in FileMonikerImpl_CommonPrefixWith()
1006 ret = CreateFileMoniker(commonPath, ppmkPrefix); in FileMonikerImpl_CommonPrefixWith()
1013 CoTaskMemFree(commonPath); in FileMonikerImpl_CommonPrefixWith()