Search found 2 matches

by madh
01.03.2007, 18:11
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: ZSequence.pas Bug 6.6.0 & 6.6.1
Replies: 4
Views: 1409

Will do

Brand new to these forums. I will definitely spend some time and read the proper steps for reporting bugs.

To clearify, the code was calling FreeAndNil on an interface variable. I would get an Access Violation. I assume the object used to be a class but now is an interface.

Dave.
by madh
01.03.2007, 00:29
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: ZSequence.pas Bug 6.6.0 & 6.6.1
Replies: 4
Views: 1409

ZSequence.pas Bug 6.6.0 & 6.6.1

Unit: ZSequence.pas
Line: 172

Old
FreeAndNil(FSequence); // FSequence: IZSequence;

New
FSequence := nil;

Exists in 6.6.0 and 6.6.1.