iphone - Autorelease pool page corrupted -
whenever using asihttprequest making webservice calls randomly getting following crash:
autorelease pool page 0x9418000 corrupted magic a1a1a100 4f545541 454c4552 21455341 pthread 0xb0103000
my code arc-fied , used -fno-objc-arc .m files of asihttp class.
does have idea or did face kind of issue before? in advance!
this indicates you're stomping memory somewhere else. i'd start turning on memory diagnostics , looking mistakes. place cause these kinds of mistakes in c code, particularly when using c arrays or c strings. you're writing outside of allocated memory, or writing memory after freed it.
there have @ times been compiler bugs cause kind of problem, these rare, , suspect code first.
Comments
Post a Comment