KSCrash
KSCrash copied to clipboard
Crash stack is EMPTY!
I modified the ViewController.mm
- (IBAction) onCrash:(__unused id) sender { char* ptr = (char*)-1; *ptr = 10; }
- (IBAction) onCrash:(__unused id) sender { std::string s; s.resize(-1); }
and catch an empty crash stack! It seem KSCrash can only catch the general exception like "throw "someting happen!" ".
any result? I met the same question and don't know why?