From: <the...@us...> - 2006-06-23 16:59:20
|
Revision: 16320 Author: thekingant Date: 2006-06-23 09:59:12 -0700 (Fri, 23 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16320&view=rev Log Message: ----------- sf patch #1511450, from Wan Hing Wah Fix a segfault when catching certain signals because the wrong parameters were passed to those signals. My bad. Modified Paths: -------------- trunk/src/conversation.c Modified: trunk/src/conversation.c =================================================================== --- trunk/src/conversation.c 2006-06-23 16:02:36 UTC (rev 16319) +++ trunk/src/conversation.c 2006-06-23 16:59:12 UTC (rev 16320) @@ -58,7 +58,7 @@ gaim_conv_im_stop_typing_timeout(im); gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typing-stopped", c); + "buddy-typing-stopped", c->account, c->name); return FALSE; } @@ -83,7 +83,7 @@ serv_send_typing(gc, name, GAIM_TYPED); gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typed", conv); + "buddy-typed", conv->account, conv->name); gaim_debug(GAIM_DEBUG_MISC, "conversation", "typed...\n"); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |