comparison src/protocols/oscar/oscar.c @ 5497:3c7748b24410

[gaim-migrate @ 5893] I changed some small things. 1) 3 comments in 3 different files which makes "make docs" not give 3 warnings. 2) Made frombase16 return-via-parameter an unsigned char* instead of a char*. Nothing actually uses frombase16, so this doesn't affect anything, but it mirrors Nathan's change to tobase16, and should make the conversion work correctly. 3) Fixed the bug Luke mailed to gaim-devel on Monday: "sign on, change an aim account's email address, sign off, segfault. it's happened 2x now" --Luke "The Yellow Dart" Schierer committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 23 May 2003 01:45:17 +0000
parents 3e8487580024
children cce2d7868c78
comparison
equal deleted inserted replaced
5496:b7c0be69c749 5497:3c7748b24410
3715 } 3715 }
3716 if (od->setemail) { 3716 if (od->setemail) {
3717 gaim_debug(GAIM_DEBUG_INFO, "oscar", "setting email\n"); 3717 gaim_debug(GAIM_DEBUG_INFO, "oscar", "setting email\n");
3718 aim_admin_setemail(sess, fr->conn, od->email); 3718 aim_admin_setemail(sess, fr->conn, od->email);
3719 g_free(od->email); 3719 g_free(od->email);
3720 od->email = NULL;
3720 od->setemail = FALSE; 3721 od->setemail = FALSE;
3721 } 3722 }
3722 3723
3723 return 1; 3724 return 1;
3724 } 3725 }