mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-24 20:01:42 +00:00
Invalid memory access at boundary
This commit is contained in:
parent
23719526cd
commit
5f87544a0d
@ -255,7 +255,7 @@ void dump (LLONG mask, unsigned char *start, int l, unsigned long abs_start, uns
|
||||
mprint (" | ");
|
||||
for (int j=0; j<16; j++)
|
||||
{
|
||||
if (x+j<=l && start[x+j]>=' ')
|
||||
if (x+j<l && start[x+j]>=' ')
|
||||
mprint ("%c",start[x+j] & (clear_high_bit?0x7F:0xFF)); // 0x7F < remove high bit, convenient for visual CC inspection
|
||||
else
|
||||
mprint (" ");
|
||||
|
Loading…
Reference in New Issue
Block a user