vote up 2 vote down star

While debugging a Linux app, I found a pointer with the suspicious value 0x7c7c7c7c. Does that particular value indicate anything?

(I ask because I know from my MSVC days that in a debug build, values like 0xcdcdcdcd or 0xdddddddd would be stored into heap blocks that were uninitialized, freed, or otherwise invalid. Some people use magic values like 0xdeadbeef or 0xcafebabe in uninitialized memory. I'm guessing something in libc or elsewhere uses 0x7c7c7c7c as a magic value, but I can't find it documented.)

flag

4 Answers

vote up 1 vote down

0x7c7c = 01111100 01111100 in binary. That could be one of those "most difficult to read" bit patterns that format utilities fill unused space on hard drives with.

link|flag
vote up 4 vote down

I don't recognize that magic number, and neither does Wikipedia. I would guess that some code in your program (or in a library you're using) is using memset() and hitting your pointer. Have you grepped your code base case-insensitively for the string "0x7c"?

link|flag
"0x7c" is a constant used within the application, but I don't see any way that four of them would be put together. – Kristopher Johnson Dec 11 '08 at 14:47
How is it used as a constant? Is it every memset()'d or memcpy()'d anywhere? Do you have a buffer overflow? – Adam Rosenfield Dec 11 '08 at 14:50
The app never sets anything to 0x7c. It reads incoming bytes from a serial port, and there is a switch statement with a "case 0x7c:" clause. However, that part of the code is not being used, and I know we don't have any buffers filled with 0x7c characters. – Kristopher Johnson Dec 11 '08 at 15:00
Well there's a probable answer... the only time you'll see the value 0x7C is if you forget to initialise that pointer. – Ant P Dec 16 '08 at 20:35
vote up 2 vote down

0x7C is an ASCII pipe "|" character. You could search for writes of that character as well 124 and 0x7C as Adam suggested.

link|flag
vote up 1 vote down

Maybe the MALLOC_PERTURB_ environment variable is set? If set, it influences how malloc() initializes the allocated memory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.