Re: [fpc-pascal] TFPHashList and nil pointers

2015-05-20 Thread Michael Van Canneyt
On Wed, 20 May 2015, waldo kitty wrote: On 05/20/2015 07:11 AM, Michael Van Canneyt wrote: On Tue, 19 May 2015, Serguei TARASSOV wrote: Hello, Is it normal that TFPHashList cannot find an item by name if the pointer is nil? However, the item is stored in the list. FPC 2.6.4, both Wind

Re: [fpc-pascal] TFPHashList and nil pointers

2015-05-20 Thread waldo kitty
On 05/20/2015 07:11 AM, Michael Van Canneyt wrote: On Tue, 19 May 2015, Serguei TARASSOV wrote: Hello, Is it normal that TFPHashList cannot find an item by name if the pointer is nil? However, the item is stored in the list. FPC 2.6.4, both Windows and Linux versions. program project1; us

Re: [fpc-pascal] TFPHashList and nil pointers

2015-05-20 Thread Michael Van Canneyt
On Tue, 19 May 2015, Serguei TARASSOV wrote: Hello, Is it normal that TFPHashList cannot find an item by name if the pointer is nil? However, the item is stored in the list. FPC 2.6.4, both Windows and Linux versions. program project1; uses Contnrs; var List: TFPHashList; begin List

[fpc-pascal] TFPHashList and nil pointers

2015-05-19 Thread Serguei TARASSOV
Hello, Is it normal that TFPHashList cannot find an item by name if the pointer is nil? However, the item is stored in the list. FPC 2.6.4, both Windows and Linux versions. program project1; uses Contnrs; var List: TFPHashList; begin List := TFPHashList.Create; List.Add('Name1', Lis