Changeset 6266fca


Ignore:
Timestamp:
2006-10-02T18:32:21Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
cc2cb2d
Parents:
995913b
Message:

Fixed memory leak in jabber_buddy_ask() and added "handling" of type="error"
<presence/> tags.

Location:
protocols/jabber
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber_util.c

    r995913b r6266fca  
    176176        buf = g_strdup_printf( "The user %s wants to add you to his/her buddy list.", handle );
    177177        do_ask_dialog( gc, buf, bla, jabber_buddy_ask_yes, jabber_buddy_ask_no );
     178        g_free( buf );
    178179}
  • protocols/jabber/presence.c

    r995913b r6266fca  
    5757                   your first line of code in C... */
    5858        }
     59        else if( strcmp( type, "error" ) == 0 )
     60        {
     61                /* What to do with it? */
     62        }
    5963        else
    6064        {
Note: See TracChangeset for help on using the changeset viewer.