mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 12:49:33 +02:00
* Call inherited in destructors.
git-svn-id: trunk@20590 -
This commit is contained in:
parent
44871bbbbd
commit
86bf5f36ba
@ -80,6 +80,7 @@ end;
|
||||
destructor TInputPipeStream.Destroy;
|
||||
begin
|
||||
PipeClose (Handle);
|
||||
inherited;
|
||||
end;
|
||||
|
||||
Function TInputPipeStream.Write (Const Buffer; Count : Longint) : longint;
|
||||
@ -110,6 +111,7 @@ end;
|
||||
destructor TOutputPipeStream.Destroy;
|
||||
begin
|
||||
PipeClose (Handle);
|
||||
inherited;
|
||||
end;
|
||||
|
||||
Function TOutputPipeStream.Read(Var Buffer; Count : Longint) : longint;
|
||||
|
Loading…
Reference in New Issue
Block a user