implemented deallocateDecryptedOutput
This commit is contained in:
parent
d16f48b760
commit
07c787b22e
@ -62,6 +62,6 @@ int main(void)
|
|||||||
//DEALLOCATION
|
//DEALLOCATION
|
||||||
free(usedKey);
|
free(usedKey);
|
||||||
deallocateLogger(logger);
|
deallocateLogger(logger);
|
||||||
deallocateDoublePointer(decrypted);
|
deallocateDecryptedOutput(decrypted);
|
||||||
return exitCode;
|
return exitCode;
|
||||||
}
|
}
|
@ -106,7 +106,7 @@ decryptedOutput decryptLogger(logFile logger) //TODO: Fix valgrind issues
|
|||||||
//DEALLOCATION
|
//DEALLOCATION
|
||||||
free(rawContent);
|
free(rawContent);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
deallocateDoublePointer(content);
|
deallocateDecryptedOutput((decryptedOutput) { content, lines }); //fuck the system lmao
|
||||||
|
|
||||||
return (decryptedOutput)
|
return (decryptedOutput)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user