Changeset 1746 for trunk/dll


Ignore:
Timestamp:
Feb 24, 2014, 3:45:52 PM (12 years ago)
Author:
John Small
Message:

Ticket #523: Stop considering missing "list", "create" or "extract" commands as errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/avv.c

    r1744 r1746  
    3333  15 Feb 14 GKY Assure the title is blank on the execute dialog call with the "see" button
    3434  24 Feb 14 JBS Ticket #517: Replaced a call to DosQueryAppType to a call to the wrapped xDosQueryApptType
     35  24 Feb 14 JBS Ticket #523: Stop considering missing "list", "create" or "extract" commands as errors
    3536
    3637***********************************************************************/
     
    442443  if (info->fnpos > 50 || info->fnpos < -1)
    443444    badPos = TRUE;
    444   checkfile(info->list, &badList);
    445   checkfile(info->create, &badCreate);
    446   checkfile(info->extract, &badExtract);
     445  if (info->list)
     446    checkfile(info->list, &badList);
     447  if (info->create)
     448    checkfile(info->create, &badCreate);
     449  if (info->extract)
     450    checkfile(info->extract, &badExtract);
    447451  if (!noStart && !noEnd && !badPos && !badList && !badCreate && !badExtract)
    448452    return TRUE;                        // OK
Note: See TracChangeset for help on using the changeset viewer.