fix 20-byte memory leak every time we stopped a torrent. :/

This commit is contained in:
Charles Kerr 2008-05-20 17:24:29 +00:00
parent 850807c626
commit 77233ab16f
1 changed files with 2 additions and 1 deletions

View File

@ -288,9 +288,10 @@ onStoppedResponse( tr_session * session,
long responseCode UNUSED,
const void * response UNUSED,
size_t responseLen UNUSED,
void * torrent_hash UNUSED )
void * torrent_hash )
{
dbgmsg( NULL, "got a response to some `stop' message" );
tr_free( torrent_hash );
onReqDone( session );
}