1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-02 04:22:44 +00:00

tiennou's fix for #463

This commit is contained in:
Charles Kerr 2007-11-12 15:08:58 +00:00
parent 4218de225f
commit dfba59b97a
2 changed files with 3 additions and 2 deletions

1
NEWS
View file

@ -15,6 +15,7 @@ NEWS file for Transmission <http://transmission.m0k.org/>
+ Fix bug that could cause good peer connections to be lost
+ Tweak request queue code to improve download speeds
+ Consume less battery power on laptops
+ Fix minor IPC parsing error
0.92 (2007/11/05)
- All Platforms:

View file

@ -761,7 +761,7 @@ ipc_addstat( benc_val_t * list, int tor,
error = st->error;
if( TR_OK == error )
{
tr_bencInitStr( item, NULL, 0, 1 );
tr_bencInitStr( item, "other", -1, 1 );
}
else if( TR_ERROR_ISSET( TR_ERROR_ASSERT, error ) )
{
@ -803,7 +803,7 @@ ipc_addstat( benc_val_t * list, int tor,
case IPC_ST_ERRMSG:
if( '\0' == st->errorString[0] )
{
tr_bencInitStr( item, NULL, 0, 1 );
tr_bencInitStr( item, "other", -1, 1 );
}
else if( tr_bencInitStrDup( item, st->errorString ) )
{