GNOME Bugzilla – Bug 593101
Empathy exits sending empty /me message
Last modified: 2009-08-28 12:20:04 UTC
Created attachment 141712 [details] downstream dependencies file Binary package hint: empathy When I send an empty "/me" message, Empathy just closes. All Telepathy related processes remain running. It looks like a clean exit, because Apport is not showing. I've attached GDB and after reproducing it I got an "Program exited with code 01" message. Since there is no debugging symbols available to download, I don't know if this is useful or not. Am I the only one with this problem? Just copy "/me" and send it to someone (tested with XMPP and MSN). ProblemType: Bug Architecture: i386 Date: Sun Aug 16 03:57:00 2009 DistroRelease: Ubuntu 9.10 Package: empathy 2.27.5-0ubuntu1 ProcEnviron: LANG=es_AR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-5.24-generic SourcePackage: empathy Uname: Linux 2.6.31-5-generic i686 from downstream: https://bugs.edge.launchpad.net/ubuntu/+source/empathy/+bug/414355
Very weird bug. Could you run Empathy with EMPATHY_DEBUG=all to see what happend? Runing it in valgrind could be useful as well.
http://paste.ubuntu.com/259960
hehe the proper usage is: $ EMPATHY_DEBUG=all empathy Send again please.
Created attachment 141769 [details] ran debug=all piped it to this file
empathy_message_set_body: if (g_str_has_prefix (body, "/me")) { type = TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION; body += 4; } bzzzzzzzzzzzzzt.
I'm working on this...
Created attachment 141883 [details] [review] Fix the parsing of /commands, and put it all in one place. http://git.collabora.co.uk/?p=user/wjt/empathy.git;a=shortlog;h=refs/heads/do-say-me-think
Your patch looks good. Maybe use tp_strdiff instead of strcmp?
(In reply to comment #8) > Your patch looks good. Maybe use tp_strdiff instead of strcmp? Meh, all the functions guard against the strings being NULL already.
I generally tend to always use strdiff for uniformity, safer programming and because I think it's easier/clearer to read than strcmp == 0. But feel free to merge if you think it doesn't worth the change.
Given that all the string comparisons bar one are more complicated than just "are these two strings equal?", and both functions in question guard against NULL strings, I've just merged it up. Thanks for the review!