# HG changeset patch # User Daniel Atallah # Date 1186752492 0 # Node ID 54e020a8b6b979ae35da0b84bc39cd1a7a68c262 # Parent 0a8dc9eb4f8e692034b834ff908c143032fb5d35 Fix null pointer deref when confirming authentication over unencrypted connection. Fixes #2493. diff -r 0a8dc9eb4f8e -r 54e020a8b6b9 libpurple/protocols/jabber/auth.c --- a/libpurple/protocols/jabber/auth.c Fri Aug 10 02:51:54 2007 +0000 +++ b/libpurple/protocols/jabber/auth.c Fri Aug 10 13:28:12 2007 +0000 @@ -296,7 +296,7 @@ purple_request_yes_no(js->gc, _("Plaintext Authentication"), _("Plaintext Authentication"), msg, - 2, js->gc->account, NULL, NULL, NULL, + 2, js->gc->account, NULL, NULL, js->gc->account, allow_cyrus_plaintext_auth, disallow_plaintext_auth); g_free(msg);