mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 16:10:52 +00:00
Fix integer overflow in R_BIN_NM_BLOCKS
This commit is contained in:
parent
2d496db14a
commit
ef0b0ddc7f
@ -145,7 +145,7 @@ typedef enum {
|
||||
R_BIN_NM_MSVC = 1<<7,
|
||||
R_BIN_NM_RUST = 1<<8,
|
||||
R_BIN_NM_KOTLIN = 1<<9,
|
||||
R_BIN_NM_BLOCKS = 1<<31,
|
||||
R_BIN_NM_BLOCKS = 1U<<31,
|
||||
R_BIN_NM_ANY = -1,
|
||||
} RBinNameMangling;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user