1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 17:17:31 +00:00

(trunk libT) fix r8871 oops

This commit is contained in:
Charles Kerr 2009-08-05 02:07:51 +00:00
parent 1c3b53244d
commit 6a2879f0ee

View file

@ -675,10 +675,10 @@ tr_torrentParse( const tr_ctor * ctor, tr_info * setmeInfo )
{ {
int doFree; int doFree;
tr_bool didParse; tr_bool didParse;
tr_parse_result result;
tr_info tmp; tr_info tmp;
const tr_benc * metainfo; const tr_benc * metainfo;
tr_session * session = tr_ctorGetSession( ctor ); tr_session * session = tr_ctorGetSession( ctor );
tr_parse_result result = TR_PARSE_OK;
if( setmeInfo == NULL ) if( setmeInfo == NULL )
setmeInfo = &tmp; setmeInfo = &tmp;