changelog
- Thu, 17 Jun 2010 22:20:25 +0000
- by John Bailey <rekkanoryo@rekkanoryo.org> [Thu, 17 Jun 2010 22:20:25 +0000] rev 30461
- Fix a typo and solve a crash. g_free() is not safe on uninitialized pointers.
- Thu, 17 Jun 2010 21:23:01 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Thu, 17 Jun 2010 21:23:01 +0000] rev 30460
- merge of 'f4706af0f5b9c7f979da13640270f8ff4236235a'
and '8fa81888c974fc79a2c70983dceec322942b6bfa'
- Thu, 17 Jun 2010 21:06:00 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Thu, 17 Jun 2010 21:06:00 +0000] rev 30459
- Minor cleanup
- Thu, 17 Jun 2010 21:04:40 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Thu, 17 Jun 2010 21:04:40 +0000] rev 30458
- We've already checked for the existance of the starttls node, so we know
it's gonna be there, so we don't need to check again
- Thu, 17 Jun 2010 20:53:44 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Thu, 17 Jun 2010 20:53:44 +0000] rev 30457
- Remove some stray spaces
- Fri, 18 Jun 2010 20:12:41 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Fri, 18 Jun 2010 20:12:41 +0000] rev 30456
- Only call failure_cb if it exists for the [gs]et_public_alias functions.
Craig "charding" Harding discovered (read: ran into the crash) this
- Thu, 17 Jun 2010 21:21:30 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Thu, 17 Jun 2010 21:21:30 +0000] rev 30455
- jabber: Exclude ASCII 127 (Delete) from allowed SASLprep characters
Tested with libidn, so changed it for the non-libidn code. Also,
disable a test that cannot succeed without libidn (since it contains
a vulgar 1/2).
- Thu, 17 Jun 2010 19:17:32 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Thu, 17 Jun 2010 19:17:32 +0000] rev 30454
- jabber: Fix a crash when sending typing notifications to a malformed buddy
E.g. "test@example.com ". Reported by Mark.
- Thu, 17 Jun 2010 01:51:58 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Thu, 17 Jun 2010 01:51:58 +0000] rev 30453
- jabber: Fix a crash in the BoB code when receiving from Jabbim.
Actually, the real problem here is that Jabbim is leaving off a REQUIRED
attribute (see http://xmpp.org/extensions/xep-0231.html#format), but
we still shouldn't crash :). Closes #12185
- Thu, 17 Jun 2010 01:45:44 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Thu, 17 Jun 2010 01:45:44 +0000] rev 30452
- jabber: Don't use a static array when it might not be sufficient.
JabberData:cid may come from the network, in which case the one I changed
here would result in truncation.