Skip to content

Commit

Permalink
alignment fix in radmin format.
Browse files Browse the repository at this point in the history
  • Loading branch information
kholia committed Jul 3, 2012
1 parent 30a58ec commit 55f3f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/radmin_fmt_plug.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static void init(struct fmt_main *pFmt)
saved_key = mem_calloc_tiny(sizeof(*saved_key) *
pFmt->params.max_keys_per_crypt, MEM_ALIGN_NONE);
crypt_out = mem_calloc_tiny(sizeof(*crypt_out) *
pFmt->params.max_keys_per_crypt, MEM_ALIGN_NONE);
pFmt->params.max_keys_per_crypt, MEM_ALIGN_WORD);
}

static int valid(char *ciphertext, struct fmt_main *pFmt)
Expand Down

0 comments on commit 55f3f6d

Please sign in to comment.