# HG changeset patch # User Luke Schierer # Date 1046055303 0 # Node ID 71b27122c8a6e484d7c7525d42b3d45399cb75fd # Parent 5fcb44d771d25de3c7e343e9501473b849df08bc [gaim-migrate @ 4897] [21:48:32] uhhh.... gaim is still crashing when clicking okay button twice in New IM screenname prompe [21:48:41] s/prompe/prompt/ [21:49:03] what the hell guys? it's one line of code to comment out to make the quick fix [21:51:38] that's a fun backtrace shadows [21:51:58] shadows: what would that line be? [21:52:41] src/dialogs.c [21:52:42] lemme check [21:53:32] <-- LSchiere has quit ("Download Gaim [http://gaim.sourceforge.net/]") [21:54:11] line 570 [21:54:25] it needs to be commented out with a note asking for a proper solution [21:54:32] otherwise, as-is, it results in a double-free committer: Tailor Script diff -r 5fcb44d771d2 -r 71b27122c8a6 src/dialogs.c --- a/src/dialogs.c Mon Feb 24 00:29:54 2003 +0000 +++ b/src/dialogs.c Mon Feb 24 02:55:03 2003 +0000 @@ -567,7 +567,10 @@ who = gtk_entry_get_text(GTK_ENTRY(info->entry)); if (!g_strcasecmp(who, "")) { +/* +SOMEONE FIX THIS CORRECTLY g_free(info); +*/ return; }