initialize the fast file option list pointer to nil

(ORCA shell currently ignores the option list but maybe someday it will be supported...)
This commit is contained in:
Kelvin Sherlock 2018-03-15 23:06:12 -04:00
parent cf72a073f8
commit ff7694ca45
1 changed files with 2 additions and 0 deletions

View File

@ -287,6 +287,7 @@ with ffDCBGS do begin {read the source file}
action := 0;
flags := $C000;
pathName := @fNameGS.theString;
option := nil;
end; {with}
FastFileGS(ffDCBGS);
if ToolError <> 0 then begin
@ -360,6 +361,7 @@ ffRec.pcount := 14; {read the file}
ffRec.action := 0;
ffRec.flags := $C000;
ffRec.pathName := @usesFileNameGS.theString;
ffRec.option := nil;
FastFileGS(ffRec);
if ToolError <> 0 then
TermError(6, nil);