You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using Logmatic through CocoaPods, version 1.0.2, in our Swift 3.1 app. Crashlytics by Fabric has reported several crashes traced to Logmatic. Two stack traces are pasted below:
The stack trace indicates that heap corruption may have caused your app to crash. Memory corruption can occur pretty easily from freeing a dangling pointer, a thread race, or bad pointer arithmetic. The important thing to keep in mind is that the resulting crash may happen long after the initial corruption. As a result, the stack trace for this crash might not provide any clues to the location of the bug in your code. However, you can still fix memory issues with tools from Apple. For speedy resolution of memory corruption issues, we recommend regularly auditing your app with Xcode’s memory debugging facilities: Visual Memory Debugger, Zombies Instrument, Address Sanitizer, Thread Sanitizer and malloc diagnostics.
The text was updated successfully, but these errors were encountered:
We're using Logmatic through CocoaPods, version 1.0.2, in our Swift 3.1 app. Crashlytics by Fabric has reported several crashes traced to Logmatic. Two stack traces are pasted below:
LMLogger.m line 209
-[LMLogger _requestWithLogs:]
Crashed: com.apple.main-thread
EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x00000000d409beb8
LMLogger.m line 230
-[LMLogger _requestSucceededWithTask:]
Crashed: NSOperationQueue 0x17403f5c0 :: NSOperation 0x171048fd0 (QOS: DEFAULT)
EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000bdf16bec8
The text was updated successfully, but these errors were encountered: