Re: [Sdl4fp-users] fpc -gh -gc causes invalid read error
Brought to you by:
trixx
From: Andreas K. F. <li...@AK...> - 2007-02-12 08:58:51
|
Am Samstag, dem 10. Feb 2007 schrieb James Walter Hofmann: > pointer $0808BFA0 does not point to valid memory block When you use -gc the compiler checks, whether a pointer points to a heap memory block. FPC only knows about the memory, which is allocated by FPC itself. But that memory is allocated from the libSDL. So FPC doesn't know anything about it. You cannot use FPC to check code written in a different language.=20 Use a general debugger for that. --=20 AKFoerster |