Skip to content

Commit

Permalink
Fix uninitialized warning (#259)
Browse files Browse the repository at this point in the history
Fixes #247
  • Loading branch information
yagehu authored Apr 18, 2024
1 parent bfd2e68 commit 1595ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path_resolver.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ static uvwasi_errno_t uvwasi__normalize_relative_path(
normalized. */
uvwasi_errno_t err;
char* combined;
char* normalized;
char* normalized = NULL;
uvwasi_size_t combined_len;
uvwasi_size_t fd_path_len;
uvwasi_size_t norm_len;
Expand Down

0 comments on commit 1595ce3

Please sign in to comment.