Skip to content

Commit

Permalink
llvmfuzz: fix missing initializers
Browse files Browse the repository at this point in the history
  • Loading branch information
rurban committed Oct 29, 2023
1 parent 9574dc3 commit b30d158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/llvmfuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ int
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
{
Dwg_Data dwg;
Bit_Chain dat = { NULL, 0, 0, 0, 0 };
Bit_Chain out_dat = { NULL, 0, 0, 0, 0 };
Bit_Chain dat = { NULL, 0, 0, 0, 0, 0, 0, NULL, 0 };
Bit_Chain out_dat = { NULL, 0, 0, 0, 0, 0, 0, NULL, 0 };
int copied = 0;
struct ly_ctx *ctx = NULL;
unsigned int possible_outputformats;
Expand Down

0 comments on commit b30d158

Please sign in to comment.