Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6070965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:59:35+00:00 2026-05-23T09:59:35+00:00

i have the following stack trace: 0 MyApp 0x000833a3 +[TFCrashHandler backtrace] + 26 1

  • 0

i have the following stack trace:

0 MyApp 0x000833a3 +[TFCrashHandler backtrace] + 26
1 MyApp 0x000836bd TFSignalHandler + 28
2 libsystem_c.dylib 0x33eac727 _sigtramp + 34
3 ??? 0x00000002 0x0 + 2
4 MyApp 0x000803f1 msgpack_unpack_next + 112
5 MyApp 0x0007faeb +[MessagePackParser parseData:] + 74
6 MyApp 0x0007f84b -[NSData(NSData_MessagePack) messagePackParse] + 26
7 MyApp 0x000254c3 +[Http get:params:cacheMins:msgPack:complete:] + 146
...

And i’m wondering how to read it:

  • I assume i go from the bottom up, eg line 7 called line 6 called line 5, etc.
  • What does the ‘+ 112’ on line 4 mean? Is that a line number in the code file where it crashed?
  • What does the ‘???’ on line 3 mean?

Thanks a lot

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T09:59:36+00:00Added an answer on May 23, 2026 at 9:59 am
    0 MyApp 0x000833a3 +[TFCrashHandler backtrace] + 26
    

    Crash was generated from +[TFCrashHandler backtrace] + 26; from whatever instruction fell at that symbol location + 26 bytes.

    If that is really the bottom of your stack trace and it crashed there, then the TCrashHandler is obscuring the real crash. The real crash looks to be a couple of frames above.

    1 MyApp 0x000836bd TFSignalHandler + 28
    

    TFSignalHandler was what called +backtrace.

    2 libsystem_c.dylib 0x33eac727 _sigtramp + 34
    

    Ewww… a signal trampoline. The app received a signal and the a trampoline was set to call TFSignalHandler().

    There are situations where a signal handler might be called on a random thread. I.e. there is a minuscule chance that this particular crash had nothing to do with the parser and everything to do with a crash somewhere else. However, without knowing more about the parser, I’d question whether it is hardened against malicious input (which could certainly cause a crash like this).

    3 ??? 0x00000002 0x0 + 2
    

    Stack was undecodable. Ignore. Meaningless. Best case; fallout from compiler optimization. Worst case; somebody pooped on the stack and the backtrace mechanism can’t figure out what is going on (highly unlikely — usually, stack poop splatters to the point of preventing a full backtrace).

    4 MyApp 0x000803f1 msgpack_unpack_next + 112
    

    Ooooh… trickzy. Someone is using C to parse stuff. And it crashed. Whatever instruction was 112 bytes from the entry point to the function went boom. But, not really, because it called the signal handler and was handled by that; which is still a boom but the signal handler has effectively destroyed additional forensic evidence.

    The “trickzy” comment references that an optimizing compiler against a big pile o’ C can end up collapsing frames to the point that the crash could have happened in a function well below this one.

    5 MyApp 0x0007faeb +[MessagePackParser parseData:] + 74
    

    MessagePackParser was parsing when things went horribly wrong.

    6 MyApp 0x0007f84b -[NSData(NSData_MessagePack) messagePackParse] + 26
    7 MyApp 0x000254c3 +[Http get:params:cacheMins:msgPack:complete:] + 146
    

    Ahh… yes…. somebody done grabbed some data from HTTP and it was malformed, causing the crash.

    Bottom line; the parser got bogus input and crashed. There was a signal handler in place that tried to help by creating a backtrace, but — apparently — didn’t really reveal any more info. A long shot alternative is that the signal was generated somewhere else and this thread was randomly selected to handle it — if you can consistently recreate this crash, the random-thread-signal case is unlikely.

    Unless you have a capture of the input data or can somehow guess how msgpack_unpack_next() might crash, you are out of luck without providing more info.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following stack trace when trying to access the django admin default
I'm using WinDBG and have the following stack trace: ntdll!NtTerminateProcess+0xa KERNELBASE!TerminateProcess+0x2f MSVCR90!_invoke_watson+0x11c [f:\dd\vctools\crt_bld\self_64_amd64\crt\src\invarg.c @
I have a following HQL query: SELECT s.id FROM stack s WHERE s.category is
I have the following string in a variable. Stack Overflow is as frictionless and
On rare occasion I get the following error and stack trace when someone access
I received an error report with the following stack trace for an app I
I have the following problem with my C program: Somewhere is a stack overflow.
Sometimes I got a crash of my application with the following stack trace :
I am getting the following stack trace from some phones running my app. This
I am getting the following stacktrace and have no idea what I am looking

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.