Ignore:
Timestamp:
Jun 25, 2024, 1:37:11 AM (3 months ago)
Author:
chronos
Message:
File:
1 moved

Legend:

Unmodified
Added
Removed
  • CoolStreaming/BitStream.pas

    r571 r572  
    1 unit UBitStream;
     1unit BitStream;
    22
    33// Date: 2010-08-17
    44
    5 {$mode delphi}
    6 
    75interface
    86
    97uses
    10   Classes, SysUtils, RtlConsts, Math, UMemory;
     8  Classes, SysUtils, RtlConsts, Math, Memory;
    119
    1210type
     
    343341destructor TMemoryBitStream.Destroy;
    344342begin
    345   FMemory.Free;
    346   inherited Destroy;
     343  FreeAndNil(FMemory);
     344  inherited;
    347345end;
    348346
Note: See TracChangeset for help on using the changeset viewer.