* bugfix of FileOpen, on error would not return zero

This commit is contained in:
carl 1998-07-13 12:31:40 +00:00
parent 27bbe627c1
commit 09451d2805

View File

@ -77,6 +77,7 @@ var
oflags : longint; oflags : longint;
AHandle : THandle; AHandle : THandle;
begin begin
AHandle:=0;
{ On opening reset error code } { On opening reset error code }
DosStreamError := 0; DosStreamError := 0;
if Mode=stCreate then if Mode=stCreate then
@ -296,8 +297,8 @@ END;
{ {
$Log$ $Log$
Revision 1.2 1998-07-09 11:55:49 carl Revision 1.3 1998-07-13 12:31:40 carl
+ working revision * bugfix of FileOpen, on error would not return zero
} }