mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-17 23:54:35 +00:00
avoid gcc warning in fuzz test
This commit is contained in:
parent
ce171d0718
commit
0c1165fc78
@ -214,7 +214,7 @@ siginfo(int unused __attribute__((__unused__)))
|
||||
struct fuzz *
|
||||
fuzz_begin(u_int strategies, const void *p, size_t l)
|
||||
{
|
||||
struct fuzz *ret = calloc(sizeof(*ret), 1);
|
||||
struct fuzz *ret = calloc(1, sizeof(*ret));
|
||||
|
||||
assert(p != NULL);
|
||||
assert(ret != NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user