removed unused print

I forgor
This commit is contained in:
Václav Šmejkal 2023-01-24 12:26:47 +01:00
parent 25b2690ab5
commit e782676c85
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59

View File

@ -125,19 +125,14 @@ char **decryptLogger(logFile logger) //TODO: Fix valgrind issues
deallocateOutput(outputBuffer); deallocateOutput(outputBuffer);
} }
for (int i = 0; i < buffer3; i++)
{
printf("%s\n", linesContentDecrypted[i]);
}
//DEALLOCATE EACH linesContent & linesContentDecrypted INDEX //DEALLOCATE EACH linesContent & linesContentDecrypted INDEX
for (int i = 0; i < buffer3; i++) for (int i = 0; i < buffer3; i++)
{ {
free(linesContent[i]); free(linesContent[i]);
} }
//DEALLOCATION
free(linesContent); free(linesContent);
free(rawContent); free(rawContent);
return linesContentDecrypted; return linesContentDecrypted;