changeset 9085:9885420f049f

[gaim-migrate @ 9862] Fixed a bug in MSN's HTTP connect method. It would sometimes enter a state where it would send no new data, but would keep queueing data indefinitely. Patch by Andrew Wellington. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 27 May 2004 05:51:01 +0000
parents d9640b38a65b
children 9fcbb18aa7be
files ChangeLog src/protocols/msn/httpmethod.c
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu May 27 04:09:14 2004 +0000
+++ b/ChangeLog	Thu May 27 05:51:01 2004 +0000
@@ -35,6 +35,8 @@
 	  and make errors easier to interpret (Felipe Contreras)
 	* Fixed a privacy-related bug in MSN that affected blocking/permitting,
 	  which was due to case-sensitive string comparisons (Gudmundur Olafsson)
+	* Fixed an MSN HTTP method bug where MSN would queue data indefinitely.
+	  (Andrew Wellington).
 	* ALT-F works correctly in the System Log Viewer (Stu Tomlinson)
 	* New tabs should scroll correctly again (Tim Ringenbach)
 	* Dialogs opened from a conversation window are now closed when
--- a/src/protocols/msn/httpmethod.c	Thu May 27 04:09:14 2004 +0000
+++ b/src/protocols/msn/httpmethod.c	Thu May 27 05:51:01 2004 +0000
@@ -118,8 +118,7 @@
 	g_return_val_if_fail(size      > 0,    0);
 	g_return_val_if_fail(servconn->http_data != NULL, 0);
 
-	if (servconn->http_data->waiting_response ||
-		servconn->http_data->queue != NULL)
+	if (servconn->http_data->waiting_response)
 	{
 		MsnHttpQueueData *queue_data = g_new0(MsnHttpQueueData, 1);