Skip to content

Commit c5d7c72

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 b495b3f commit c5d7c72

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
@@ -4788,7 +4788,10 @@ void get_function_arg(BurpGlobals* tdgbl, bool skip_arguments)
47884788
break;
47894789

47904790
case att_functionarg_field_precision:
4791-
get_int32(tdgbl);
4791+
if (tdgbl->RESTORE_format >= 6)
4792+
get_int32(tdgbl);
4793+
else
4794+
bad_attribute(scan_next_attr, attribute, 90);
47924795
break;
47934796

47944797
case att_functionarg_package_name:

0 commit comments

Comments
 (0)