Skip to content

Commit 18daee9

Browse files
dmitry-lipetskdyemanov
authored andcommitted
[GBAK, Restore] The skip of att_functionarg_field_precision is corrected (#7852)
This commit fixes the issue #7851.
1 parent f9e0e28 commit 18daee9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/burp/restore.epp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4753,7 +4753,10 @@ void get_function_arg(BurpGlobals* tdgbl, bool skip_arguments)
47534753
break;
47544754

47554755
case att_functionarg_field_precision:
4756-
get_int32(tdgbl);
4756+
if (tdgbl->RESTORE_format >= 6)
4757+
get_int32(tdgbl);
4758+
else
4759+
bad_attribute(scan_next_attr, attribute, 90);
47574760
break;
47584761

47594762
case att_functionarg_package_name:

0 commit comments

Comments
 (0)