Changeset 81ee561 for protocols/nogaim.c


Ignore:
Timestamp:
2010-03-20T18:03:18Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
85693e6
Parents:
3330468 (diff), 0baed0d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merging head. Most changes are not so relevant because they're to IM
modules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r3330468 r81ee561  
    655655        oo = u->online;
    656656       
    657         if( u->away )
    658         {
    659                 g_free( u->away );
    660                 u->away = NULL;
    661         }
     657        g_free( u->away );
     658        g_free( u->status_msg );
     659        u->away = u->status_msg = NULL;
    662660       
    663661        if( ( flags & OPT_LOGGED_IN ) && !u->online )
     
    697695                }
    698696        }
    699         /* else waste_any_state_information_for_now(); */
     697        else
     698        {
     699                u->status_msg = g_strdup( message );
     700        }
    700701       
    701702        /* LISPy... */
Note: See TracChangeset for help on using the changeset viewer.