1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 00:01:16 +00:00

Fix missing return value in rule_op_mangle_toggle_at()

This commit is contained in:
jsteube 2017-09-08 22:49:49 +02:00
parent 55f653f374
commit b169653b8f

View File

@ -1172,6 +1172,8 @@ static u32 rule_op_mangle_toggle_at (MAYBE_UNUSED const u32 p0, MAYBE_UNUSED con
buf1[1] = t[5];
buf1[2] = t[6];
buf1[3] = t[7];
return (in_len);
}
static u32 rule_op_mangle_reverse (MAYBE_UNUSED const u32 p0, MAYBE_UNUSED const u32 p1, MAYBE_UNUSED u32 buf0[4], MAYBE_UNUSED u32 buf1[4], const u32 in_len)