|
From: Julian S. <js...@ac...> - 2005-07-26 21:47:48
|
> I do have a big chunk of array. Is there any way of getting around this > warning and false memory errors without using malloc? Best is to get the array out of the stack and turn into a malloc/freed array. If you can't do that, use valgrind 3.X with it instead, and use --max-stackframe= flag (it'll tell you what you need to set it to). J |