comparison src/gtk/transfer.c @ 59:618423504fe0

2002-11-20 Brian Masney <masneyb@gftp.org> * lib/config_file.c - don't check buf[-1] for blank newlines in gftp_read_config_file() and gftp_read_bookmarks_file() * lib/misc.c (string_hash_function) - Fixes if the string was less than 2 characters * src/gtk/transfer.c - unlock mutex before we destroy (for POSIX compliance) All 3 of these fixes are from Peter Osterlund <petero2@telia.com>
author masneyb
date Thu, 21 Nov 2002 02:49:06 +0000
parents c01d91c10f6c
children 41b71c4e5076
comparison
equal deleted inserted replaced
58:c01d91c10f6c 59:618423504fe0
1614 else if (tdata->show) 1614 else if (tdata->show)
1615 show_transfer (tdata); 1615 show_transfer (tdata);
1616 else if (tdata->done) 1616 else if (tdata->done)
1617 { 1617 {
1618 next = templist->next; 1618 next = templist->next;
1619 pthread_mutex_unlock (tdata->structmutex);
1619 transfer_done (templist); 1620 transfer_done (templist);
1620 templist = next; 1621 templist = next;
1621 continue; 1622 continue;
1622 } 1623 }
1623 1624