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