trying to fix github actions problems

This commit is contained in:
Václav Šmejkal 2022-05-12 18:45:32 +02:00
parent 60f0ef807e
commit 70dd6783ad

@ -32,8 +32,11 @@ int main(int argc, char *argv[])
}
//DEALLOCATION
free(buffer);
if (!githubActions) deallocateOutput(encrypted);
if (!githubActions)
{
free(buffer);
deallocateOutput(encrypted);
}
return 0;
}