|
From: Nicholas N. <nj...@ca...> - 2004-05-09 10:22:04
|
On Sat, 8 May 2004, Joshua Moore-Oliva wrote: > basically.. my program was attempting to access memory that it had > previously deleted... valgrind gave me teh warnings, and then spat out > all this and terminated. > > Dunno if it's of any help to you, it didn't happen again after I fixed > the problem. Thanks for the report. It's hard to avoid this -- if a program trashes malloc's data structures (which your program probably did) it's pretty hard to avoid problems. N |