Closed GoogleCodeExporter closed 8 years ago
Original comment by eskr...@mac.com
on 10 Apr 2013 at 11:31
Adding another issue that might be related (This is from my post on the forum
(https://groups.google.com/forum/?fromgroups=#!topic/coreplot-discuss/25QFPQ7mh_
Q):
I just upgraded my code to the latest release, and ran my app without any
modification, and it crashed on me with malloc error:
2013-04-10 11:00:01.060 void SendDelegateMessage(NSInvocation*): delegate
(_selectionLayoutChangedByScrolling:) failed to return after waiting 10
seconds. main run loop mode: kCFRunLoopDefaultMode
malloc: *** mmap(size=3280896) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
It seems like if I have axis.labelTextStyle called before calling
axis.majorIntervalLength, it crashes.
To make it work, I had to move majorIntervalLength call above labelTextStyle
call.
FAILS:
x.labelTextStyle = axisTextStyle;
x.majorIntervalLength = CPTDecimalFromFloat(self.xInterval*ONE_DAY);
WORKS:
x.majorIntervalLength = CPTDecimalFromFloat(self.xInterval*ONE_DAY);
x.labelTextStyle = axisTextStyle;
Anyone knows about this?
Thanks
Original comment by amit.a.c...@gmail.com
on 11 Apr 2013 at 5:07
Original comment by eskr...@mac.com
on 28 Apr 2013 at 3:44
This issue was closed by revision 55cf7a422dff.
Original comment by eskr...@mac.com
on 28 Apr 2013 at 4:09
Original issue reported on code.google.com by
toddzil...@gmail.com
on 10 Apr 2013 at 2:07