implemented deallocateDoublePointer in logger-test

This commit is contained in:
Václav Šmejkal 2023-01-25 12:10:21 +01:00
parent abecff2c33
commit caaa9f9b00
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -56,12 +56,9 @@ int main(void)
exitCode = 1;
}
//TODO: Create some function for deallocating decrypted
free(decrypted[0]);
free(decrypted);
//DEALLOCATION
free(usedKey);
deallocateLogger(logger);
deallocateDoublePointer(decrypted);
return exitCode;
}