Changeset 43d8cc5
- Timestamp:
- 2007-06-13T23:31:18Z (17 years ago)
- Branches:
- master
- Children:
- 998b103
- Parents:
- 7e9dc74
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
r7e9dc74 r43d8cc5 447 447 { 448 448 user_t *u = user_findhandle( ic, handle ); 449 char newnick[MAX_NICK_LENGTH+1] ;449 char newnick[MAX_NICK_LENGTH+1], *orig_nick; 450 450 451 451 if( u && !u->online && !nick_saved( ic->acc, handle ) ) … … 465 465 nick_dedupe( ic->acc, handle, newnick ); 466 466 467 user_rename( ic->irc, u->nick, newnick ); 467 /* u->nick will be freed halfway the process, so it can't be 468 passed as an argument. */ 469 orig_nick = g_strdup( u->nick ); 470 user_rename( ic->irc, orig_nick, newnick ); 471 g_free( orig_nick ); 468 472 } 469 473 } -
user.c
r7e9dc74 r43d8cc5 161 161 } 162 162 163 /* DO NOT PASS u->nick FOR oldnick !!! */ 163 164 void user_rename( irc_t *irc, char *oldnick, char *newnick ) 164 165 {
Note: See TracChangeset
for help on using the changeset viewer.