> A hint: the program crashes if compiled with -gh (heaptrace) there seems to
> be a memory error somewhere.

in uos code line 2878:

for x := 0 to (Data.OutFrames div ratio) do ...

Must be:

for x := 0 to (Data.OutFrames div ratio)  -1 do ...

Many thanks Martin and Heaptrace. ;-)

And for the memory leak:

All the created msetimers must be freed on Form.OnDestroy.
--> Done: -->

Heap dump by heaptrc unit
72271 memory blocks allocated : 39115233/39248848
72271 memory blocks freed     : 39115233/39248848
0 unfreed memory blocks : 0
True heap size : 753664
True free heap : 753664

;-) 

> The problem is the negative shifts in
> mainfo.container.frame.frameimage_left

OK, I will study it.

Many thanks Martin.

Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to