# HG changeset patch # User Christian Hammond # Date 1044432145 0 # Node ID f8fec48f0fde6f35c5e1eab6a195ec358b2e5821 # Parent 32aa1451744d2c0eea9595c4dacc5dab1f3d85ca [gaim-migrate @ 4806] Should fix a potential infinite recursion bug I just noticed. committer: Tailor Script diff -r 32aa1451744d -r f8fec48f0fde src/ft.c --- a/src/ft.c Wed Feb 05 06:17:52 2003 +0000 +++ b/src/ft.c Wed Feb 05 08:02:25 2003 +0000 @@ -629,6 +629,8 @@ if (ui_ops != NULL && ui_ops->cancel != NULL) ui_ops->cancel(xfer); + xfer->bytes_remaining = 0; + /* Delete the transfer. */ gaim_xfer_destroy(xfer); }