comparison libpurple/protocols/yahoo/util.c @ 28059:1d2425f2e4ff

Woah, this was wrong. MY BAD! We should not be setting this to true just because we get an unknown html tag (or in this case an unescaped '<'). This fixes bug #10021 and I think probably another duplicate bug
author Mark Doliner <mark@kingant.net>
date Sat, 22 Aug 2009 18:24:19 +0000
parents 2a6f0c2460ae
children 43200ff042ad
comparison
equal deleted inserted replaced
28058:bf093003785b 28059:1d2425f2e4ff
609 609
610 match = g_hash_table_lookup(tags_ht, tag_name); 610 match = g_hash_table_lookup(tags_ht, tag_name);
611 if (match == NULL) { 611 if (match == NULL) {
612 /* Unknown tag. The user probably typed a less-than sign */ 612 /* Unknown tag. The user probably typed a less-than sign */
613 g_string_append_c(cdata, x[i]); 613 g_string_append_c(cdata, x[i]);
614 no_more_gt_brackets = TRUE;
615 g_free(tag); 614 g_free(tag);
616 g_free(tag_name); 615 g_free(tag_name);
617 break; 616 break;
618 } 617 }
619 618