This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to decode info in app_error_save_and_stop

When I trap an error in app_error.c in app_error_save_and_stop,

 

I mostly get a filename, line number, and an error code that I can understand.

 

However, sometimes I don’t get a filename, but instead get some octets:

Name : m_error_data.p_error_info->p_file_name

                Details:0x8e5 "K\030G\006J\020`\001h\201ó\b\210@h"

                Default:0x8e5 "K\030G\006J\020`\001h\201ó\b\210@h"

                Decimal:2277

                Hex:0x8e5

                Binary:100011100101

 

And

Name : m_error_data.p_assert_info->line_num

                Details:1024

                Default:1024

                Decimal:1024

                Hex:0x400

                Binary:10000000000

And

Name : m_error_data.p_assert_info->line_num

                Details:1024

                Default:1024

                Decimal:1024

                Hex:0x400

                Binary:10000000000

What does the above mean ?

And how do I look the info up ?