mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
SAFE_BYTE_GET_INTERNAL
We won't want this assert triggering in the next release. * dwarf.c (SAFE_BYTE_GET_INTERNAL): Assert only when ENABLE_CHECKING.
This commit is contained in:
@ -390,8 +390,11 @@ read_leb128 (unsigned char *data,
|
||||
(int) amount, (int) sizeof (VAL)); \
|
||||
amount = sizeof (VAL); \
|
||||
} \
|
||||
assert ((PTR) <= (END)); \
|
||||
if (ENABLE_CHECKING) \
|
||||
assert ((PTR) <= (END)); \
|
||||
size_t avail = (END) - (PTR); \
|
||||
if ((PTR) > (END)) \
|
||||
avail = 0; \
|
||||
if (amount > avail) \
|
||||
amount = avail; \
|
||||
if (amount == 0) \
|
||||
|
Reference in New Issue
Block a user