File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 70
70
71
71
#define BN_INVALID_EXPR ((size_t)-1)
72
72
73
- #define BN_MAX_STRING_LENGTH 128
73
+ #define BN_MAX_STRING_LENGTH 128
74
+
75
+ #define BN_TAG_TOKEN_WIDTH 5
74
76
75
77
#define LLVM_SVCS_CB_NOTE 0
76
78
#define LLVM_SVCS_CB_WARNING 1
Original file line number Diff line number Diff line change @@ -3479,7 +3479,10 @@ def tag_types(self):
3479
3479
for i in range (0 , count .value ):
3480
3480
tag = TagType (core .BNNewTagTypeReference (types [i ]))
3481
3481
if tag .name in result :
3482
- result [tag .name ] = [result [tag .name ], tag ]
3482
+ if type (result [tag .name ]) == list :
3483
+ result [tag .name ].append (tag )
3484
+ else :
3485
+ result [tag .name ] = [result [tag .name ], tag ]
3483
3486
else :
3484
3487
result [tag .name ] = tag
3485
3488
core .BNFreeTagTypeList (types , count .value )
Original file line number Diff line number Diff line change 12
12
13
13
#define LINEAR_VIEW_UPDATE_CHECK_INTERVAL 200
14
14
#define MAX_STRING_TYPE_LENGTH 1048576
15
- #define EDGE_GUTTER_WIDTH 4
15
+ #define EDGE_GUTTER_WIDTH 5
16
16
17
17
struct BINARYNINJAUIAPI LinearViewCursorPosition: public BinaryNinja::LinearDisassemblyPosition
18
18
{
You can’t perform that action at this time.
0 commit comments