Re: [fpc-pascal] more memory for local var in function

2005-09-05 Thread Peter Vreman
> Hi, > > I have a program that don't work if I declare a local array of 15000 > bytes, but it works if the array is > only for 500 bytes, > > Where is the problem? frame, heap, stack? Stackframe. Most of the time it is a buffer overrun or an not initialized variable. > how can I increase the me

Re: [fpc-pascal] more memory for local var in function

2005-09-05 Thread Anton Tichawa
Jose Pascual wrote: Hi, I have a program that don't work if I declare a local array of 15000 bytes, but it works if the array is only for 500 bytes, Where is the problem? frame, heap, stack? how can I increase the memory for local vars in procedure/functions? tia best regards _

[fpc-pascal] more memory for local var in function

2005-09-05 Thread Jose Pascual
Hi, I have a program that don't work if I declare a local array of 15000 bytes, but it works if the array is only for 500 bytes, Where is the problem? frame, heap, stack? how can I increase the memory for local vars in procedure/functions? tia best regards _