Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HexRaysPyTools/callbacks/scanners.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def activate(self, ctx):

class DeepScanVariable(Scanner):
description = "Deep Scan Variable"
hotkey = "shift+F"
hotkey = "Shift+Alt+F"

def __init__(self):
super(DeepScanVariable, self).__init__()
Expand Down
2 changes: 2 additions & 0 deletions HexRaysPyTools/core/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ def create_padding_udt_member(offset, size):
if size == 1:
udt_member.type = const.BYTE_TINFO
else:
if size < 1 or size > 0xffffffff:
print("HexRaysPyTools::core::helper::create_padding_udt_member: size is out of uint32 range (offset:{} size:{})".format(offset, size))
array_data = idaapi.array_type_data_t()
array_data.base = 0
array_data.elem_type = const.BYTE_TINFO
Expand Down
Loading