1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

fix memory leak

This commit is contained in:
zefanxu2
2017-02-13 21:12:59 -06:00
parent db2666c10c
commit 2bb6fc2a94

View File

@ -127,6 +127,6 @@ int main(int argc, const char** argv)
const char* const outFilename = createOutFilename_orDie(inFilename);
compress_orDie(inFilename, outFilename);
free(outFilename);
return 0;
}