Changeset f9756bd for irc_commands.c


Ignore:
Timestamp:
2008-03-30T21:26:16Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
ddba0ae
Parents:
5ecf96b
Message:

Changed charset handling: irc_t keeps two iconv structures, which are just
used for every line sent and received, so now there's no need to use
g_iconv_open() every time a message comes in/out. Also, fixed a small
memory leak that was there for a long time but somehow never caught my
attention.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_commands.c

    r5ecf96b rf9756bd  
    278278                        if( cmd[1] != irc->last_target )
    279279                        {
    280                                 if( irc->last_target )
    281                                         g_free( irc->last_target );
     280                                g_free( irc->last_target );
    282281                                irc->last_target = g_strdup( cmd[1] );
    283282                        }
Note: See TracChangeset for help on using the changeset viewer.