1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-06-27 18:32:36 +00:00

fix Cygwin build warnings

This commit is contained in:
Gabriele Gristina 2022-02-27 14:39:28 +01:00
parent 7e16335999
commit 9615bf566b

View File

@ -224,30 +224,32 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
if (rc_tokenizer != PARSER_OK) return (rc_tokenizer); if (rc_tokenizer != PARSER_OK) return (rc_tokenizer);
u8 *checksum_pos = NULL; const u8 *checksum_pos = NULL;
u8 *data_pos = NULL; const u8 *data_pos = NULL;
int data_len = 0; int data_len = 0;
if (krb5asrep->format == 1) if (krb5asrep->format == 1)
{ {
checksum_pos = (u8 *) token.buf[3]; checksum_pos = token.buf[3];
data_pos = (u8 *) token.buf[4]; data_pos = token.buf[4];
data_len = token.len[4]; data_len = token.len[4];
memcpy (krb5asrep->account_info, token.buf[2], token.len[2]); memcpy (krb5asrep->account_info, token.buf[2], token.len[2]);
} }
else else
{ {
checksum_pos = (u8 *) token.buf[2]; checksum_pos = token.buf[2];
data_pos = (u8 *) token.buf[3]; data_pos = token.buf[3];
data_len = token.len[3]; data_len = token.len[3];
memcpy (krb5asrep->account_info, token.buf[1], token.len[1]); memcpy (krb5asrep->account_info, token.buf[1], token.len[1]);
} }
if (checksum_pos == NULL || data_pos == NULL) return (PARSER_SALT_VALUE);
krb5asrep->checksum[0] = hex_to_u32 (checksum_pos + 0); krb5asrep->checksum[0] = hex_to_u32 (checksum_pos + 0);
krb5asrep->checksum[1] = hex_to_u32 (checksum_pos + 8); krb5asrep->checksum[1] = hex_to_u32 (checksum_pos + 8);
krb5asrep->checksum[2] = hex_to_u32 (checksum_pos + 16); krb5asrep->checksum[2] = hex_to_u32 (checksum_pos + 16);