When signing on to an oscar account, if we check your screen name and

Tue, 16 Oct 2007 07:50:25 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Tue, 16 Oct 2007 07:50:25 +0000
changeset 21047
49cb940aa814
parent 21046
63909dd9548c
child 21048
2c2d4d84d329

When signing on to an oscar account, if we check your screen name and
determine that it is invalid, then return after the call to
purple_connection_error() instead of continuing and trying to connect
to something silly. Thanks to Jim Rodgers at meebo for finding this.

libpurple/protocols/oscar/oscar.c file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/oscar/oscar.c	Tue Oct 16 07:45:02 2007 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Tue Oct 16 07:50:25 2007 +0000
@@ -1263,6 +1263,7 @@
 		gc->wants_to_die = TRUE;
 		purple_connection_error(gc, buf);
 		g_free(buf);
+		return;
 	}
 
 	if (aim_snvalid_icq((purple_account_get_username(account)))) {

mercurial