1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-31 00:03:07 +03:00

tests: Free memory of tmp_file in torture_knownhosts_parsing

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-08-08 15:04:27 +02:00
parent 8c11367410
commit 8ce4004260

View File

@ -72,6 +72,7 @@ static int teardown_knownhosts_file(void **state)
}
unlink(tmp_file);
SAFE_FREE(tmp_file);
return 0;
}