Mercurial > pidgin
comparison src/dialogs.c @ 4609:71b27122c8a6
[gaim-migrate @ 4897]
[21:48:32] <shadows> uhhh.... gaim is still crashing when clicking okay button twice in New IM screenname prompe
[21:48:41] <shadows> s/prompe/prompt/
[21:49:03] <shadows> what the hell guys? it's one line of code to comment out to make the quick fix
[21:51:38] <LSchiere0> that's a fun backtrace shadows
[21:51:58] <LSchiere0> shadows: what would that line be?
[21:52:41] <shadows> src/dialogs.c
[21:52:42] <shadows> lemme check
[21:53:32] <-- LSchiere has quit ("Download Gaim [http://gaim.sourceforge.net/]")
[21:54:11] <shadows> line 570
[21:54:25] <shadows> it needs to be commented out with a note asking for a proper solution
[21:54:32] <shadows> otherwise, as-is, it results in a double-free
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 24 Feb 2003 02:55:03 +0000 |
parents | 221fb7143cd4 |
children | 5385b3625a72 |
comparison
equal
deleted
inserted
replaced
4608:5fcb44d771d2 | 4609:71b27122c8a6 |
---|---|
565 | 565 |
566 if (resp == GTK_RESPONSE_OK) { | 566 if (resp == GTK_RESPONSE_OK) { |
567 who = gtk_entry_get_text(GTK_ENTRY(info->entry)); | 567 who = gtk_entry_get_text(GTK_ENTRY(info->entry)); |
568 | 568 |
569 if (!g_strcasecmp(who, "")) { | 569 if (!g_strcasecmp(who, "")) { |
570 /* | |
571 SOMEONE FIX THIS CORRECTLY | |
570 g_free(info); | 572 g_free(info); |
573 */ | |
571 return; | 574 return; |
572 } | 575 } |
573 | 576 |
574 account = (info->gc ? info->gc->account : NULL); | 577 account = (info->gc ? info->gc->account : NULL); |
575 | 578 |