Merge pull request #546 from zefanxu/dev

fix memory leak
dev
Yann Collet 2017-02-14 00:49:06 -08:00 committed by GitHub
commit 1decff24b8
1 changed files with 1 additions and 1 deletions

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;
}