Changeset 1646


Ignore:
Timestamp:
Nov 13, 2011, 6:13:03 AM (13 years ago)
Author:
Gregg Young
Message:

Fix popup file menu extract failure on arc file with spaces in its name. Ticket 481

File:
1 edited

Legend:

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

    r1554 r1646  
    4848  20 Nov 10 GKY Check that pTmpDir IsValid and recreate if not found; Fixes hangs caused
    4949                by temp file creation failures.
     50  12 Nov 11 GKY Fixed extract failure caused by spaces in the arc file name.
    5051
    5152***********************************************************************/
     
    476477                {
    477478                  EXTRDATA ex;
    478                   BOOL maskspaces = FALSE;
     479                  BOOL maskspaces = FALSE;
     480                  CHAR arcname[CCHMAXPATH];
    479481
    480482                  memset(&ex, 0, sizeof(EXTRDATA));
     
    482484                  if (!ex.info || (!ex.info->extract && !ex.info->exwdirs))
    483485                    break;
    484                   ex.size = sizeof(EXTRDATA);
    485                   ex.arcname = wk->li->list[x];
    486                   strcpy(ex.masks, "*");
     486                  ex.size = sizeof(EXTRDATA);
     487                  BldQuotedFileName(arcname, wk->li->list[x]);
     488                  ex.arcname = arcname;
     489                  if (!*ex.masks)
     490                    strcpy(ex.masks, "*");
    487491                  strcpy(ex.extractdir, wk->li->targetpath);
    488492                  if (!WinDlgBox(HWND_DESKTOP,
Note: See TracChangeset for help on using the changeset viewer.