Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/unshield.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static bool handle_parameters(

static bool extract_file(Unshield* unshield, const char* prefix, int index)
{
bool success;
bool success = false;
char* dirname;
char* filename;
char* p;
Expand Down Expand Up @@ -595,7 +595,7 @@ static int extract_helper(Unshield* unshield, const char* prefix, int first, int

static bool test_file(Unshield* unshield, int index)
{
bool success;
bool success = false;

printf(" testing: %s\n", unshield_file_name(unshield, index));

Expand Down