Ignore:
Timestamp:
Dec 2, 2021, 12:18:18 PM (3 years ago)
Author:
chronos
Message:
  • Fixed: Loading of JPEG photo. Image binary data were affected by TStringList. Store them just as a string type.
  • Fixed: Reset list filter if different file is opened to avoid confusing empty list after file open.
  • Fixed: Decoding long quoted-printable text due to range check error of small index variable type.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UQuotedPrintable.pas

    r35 r42  
    2121function DecodeQuotedPrintable(Text: string): string;
    2222var
    23   O, Count, WS: Byte;
     23  O, Count, WS: Integer;
    2424  I: integer;
    2525  InBuf: array[0..Pred(MaxLine)] of Byte;
Note: See TracChangeset for help on using the changeset viewer.