Changeset 1739 for trunk/dll/init.c


Ignore:
Timestamp:
Feb 22, 2014, 10:06:09 PM (11 years ago)
Author:
Gregg Young
Message:

Cleanup of readonly check code suppress spurious error on blocked directory delete and eliminated the check on additional temp file deletes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1720 r1739  
    120120                started from fm2 after fm2 has been started with stdout and stderr
    121121                redirected to a file.
     122  22 Feb 14 GKY Cleanup of readonly check code suppress spurious error on blocked directory
     123                delete and eliminated the check on additional temp file deletes
    122124
    123125***********************************************************************/
     
    596598        strcpy(enddir, ffb.achName);
    597599        if (ffb.attrFile & FILE_DIRECTORY) {
    598           wipeallf(FALSE, "%s\\*", s);
     600          wipeallf(TRUE, "%s\\*", s);
    599601          DosDeleteDir(s);
    600602        }
     
    636638  DosForceDelete(szTempFile);
    637639  if (pTmpDir) {
    638     wipeallf(FALSE, "%s\\*", pTmpDir);
     640    wipeallf(TRUE, "%s\\*", pTmpDir);
    639641    DosDeleteDir(pTmpDir);
    640642  }
Note: See TracChangeset for help on using the changeset viewer.