fixes #2973: allow longer size fields for -m 11600 = 7-Zip

This commit is contained in:
philsmd
2021-09-10 17:47:09 +02:00
committed by GitHub
parent 3cfb5790f9
commit afa2330e6a
+2 -2
View File
@@ -488,13 +488,13 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token.sep[8] = '$';
token.len_min[8] = 1;
token.len_max[8] = 6;
token.len_max[8] = 8;
token.attr[8] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.sep[9] = '$';
token.len_min[9] = 1;
token.len_max[9] = 6;
token.len_max[9] = 8;
token.attr[9] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;