1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00

(trunk libT) fix a minor memory leak.

This commit is contained in:
Charles Kerr 2009-01-18 15:15:10 +00:00
parent 9c9c94a81d
commit 5ea9bcacbc

View file

@ -611,6 +611,7 @@ tr_fdClose( void )
tr_lockFree( gFd->lock );
tr_free( gFd->openFiles );
tr_free( gFd );
gFd = NULL;
}