From: <the...@us...> - 2006-05-08 23:53:51
|
Revision: 16143 Author: thekingant Date: 2006-05-07 11:28:32 -0700 (Sun, 07 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16143&view=rev Log Message: ----------- Fix another one of those assertion warnings. This also probably makes font tags from iChat work correctly. Modified Paths: -------------- trunk/src/protocols/oscar/oscar.c Modified: trunk/src/protocols/oscar/oscar.c =================================================================== --- trunk/src/protocols/oscar/oscar.c 2006-05-07 18:19:02 UTC (rev 16142) +++ trunk/src/protocols/oscar/oscar.c 2006-05-07 18:28:32 UTC (rev 16143) @@ -1859,7 +1859,7 @@ GString *message; gchar *tmp; aim_mpmsg_section_t *curpart; - const char *start; + const char *start, *end; GData *attribs; gaim_debug_misc("oscar", "Received IM from %s with %d parts\n", @@ -1955,7 +1955,7 @@ /* * Convert iChat color tags to normal font tags. */ - if (gaim_markup_find_tag("body", tmp, &start, NULL, &attribs)) + if (gaim_markup_find_tag("body", tmp, &start, &end, &attribs)) { const char *ichattextcolor, *ichatballooncolor; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |