Skip to content

Commit

Permalink
mips: wrong -Werror=maybe-uninitialized warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rurban committed Sep 28, 2024
1 parent adce77a commit ce6c80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ bfr_read_32 (void *restrict dst, BITCODE_RC *restrict *restrict src,
size_t size)
{
size_t n;
uint32_t *dp, *sp, *dp0, *sp0;
uint32_t *dp, *sp, *dp0 = NULL, *sp0 = NULL;
bool dst_unaligned = false;
bool src_unaligned = false;
assert (!(size % 4));
Expand Down

0 comments on commit ce6c80d

Please sign in to comment.