Changeset 1000
- Timestamp:
- Mar 16, 2008, 10:46:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/comp.c ¶
r985 r1000 53 53 29 Feb 08 GKY Use xfree where appropriate 54 54 29 Feb 08 GKY Refactor global command line variables to notebook.h 55 16 Mar 08 GKY Prevent trap caused by files that exceed maxpath length 55 56 56 57 ***********************************************************************/ … … 1315 1316 ULONG ulBufBytes = sizeof(FILEFINDBUF4L) * FilesToGet; 1316 1317 APIRET rc; 1318 static BOOL fDone; 1317 1319 1318 1320 if (!str || !*str) { … … 1323 1325 // DbgMsg(pszSrcFile, __LINE__, "FillDirList start %s", str); 1324 1326 1325 maskstr = xmalloc(CCHMAXPATH , pszSrcFile, __LINE__);1327 maskstr = xmalloc(CCHMAXPATH + 100, pszSrcFile, __LINE__); 1326 1328 if (!maskstr) 1327 1329 return; … … 1372 1374 else if (fForceLower) 1373 1375 strlwr(pffbFile->achName); 1374 memcpy(enddir, pffbFile->achName, pffbFile->cchName + 1); 1376 memcpy(enddir, pffbFile->achName, pffbFile->cchName + 1); 1377 if (strlen(maskstr) > CCHMAXPATH) { 1378 // Complain if pathnames exceeds max 1379 DosFindClose(hDir); 1380 xfree(pffbArray); 1381 xfree(maskstr); 1382 if (!fDone) { 1383 fDone = TRUE; 1384 saymsg(MB_OK | MB_ICONASTERISK, 1385 HWND_DESKTOP, 1386 GetPString(IDS_WARNINGTEXT), 1387 "One or more of your files has a full path name that exceeds the OS/2 maximum"); 1388 } 1389 return; 1390 } 1375 1391 if (AddToFileList(maskstr + skiplen, 1376 1392 pffbFile, list, pnumfiles, pnumalloc)) {
Note:
See TracChangeset
for help on using the changeset viewer.