Indy9 memory leak?

Just tried the following code and measured memory with TaskInfo2000
(www.iarsn.com). After a 1000 gets the data in memory has increased
with 164KB. OS: win98, Delphi5, Indy9 from nevrona ftp (date:
11-sept-2001)

procedure TForm1.Button1Click(Sender: TObject);
var
    i: integer;
    http: TIDHttp;
begin
    http:=TIdHttp.Create(nil);
    for i:=1 to 1000 do begin
        http.Get('http://localhost/test.htm');
    end;
    http.Free;
end;

Also this version of Indy cuts off the parameter part in a URL like
when I want to get "page.asp?name=bill" Indy will get "page.asp". I
"fixed" it by remarking out the "?" param check code in IDURI.pas.

enough complaining, Indy rulezzz! =) thank you all of Indy dev team