mirror of
https://github.com/transmission/transmission
synced 2025-02-21 13:46:52 +00:00
Iterate correctly when removing all torrents.
This commit is contained in:
parent
1d95bcc689
commit
7befa196a1
1 changed files with 4 additions and 0 deletions
|
@ -801,6 +801,10 @@ tormsg( enum ipc_msg id, benc_val_t * val, int64_t tag, void * arg )
|
|||
while( NULL != ( iter = torrent_iter( iter, &ii ) ) )
|
||||
{
|
||||
func( ii );
|
||||
if( torrent_remove == func )
|
||||
{
|
||||
iter = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* remove/start/stop requested list of torrents */
|
||||
|
|
Loading…
Reference in a new issue