Changeset 1000


Ignore:
Timestamp:
Mar 16, 2008, 10:46:11 PM (17 years ago)
Author:
Gregg Young
Message:

Prevent trap and provide error message when file names that exceed maxpath are encountered (ticket 223)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/comp.c

    r985 r1000  
    5353  29 Feb 08 GKY Use xfree where appropriate
    5454  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
    5556
    5657***********************************************************************/
     
    13151316  ULONG ulBufBytes = sizeof(FILEFINDBUF4L) * FilesToGet;
    13161317  APIRET rc;
     1318  static BOOL fDone;
    13171319
    13181320  if (!str || !*str) {
     
    13231325  // DbgMsg(pszSrcFile, __LINE__, "FillDirList start %s", str);
    13241326
    1325   maskstr = xmalloc(CCHMAXPATH, pszSrcFile, __LINE__);
     1327  maskstr = xmalloc(CCHMAXPATH + 100, pszSrcFile, __LINE__);
    13261328  if (!maskstr)
    13271329    return;
     
    13721374          else if (fForceLower)
    13731375            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          }
    13751391          if (AddToFileList(maskstr + skiplen,
    13761392                            pffbFile, list, pnumfiles, pnumalloc)) {
Note: See TracChangeset for help on using the changeset viewer.