GNOME Bugzilla – Bug 659594
Shouldn't try requesting Call channel if built without Call support
Last modified: 2011-09-26 09:57:34 UTC
There is no point to and Call support is still experimental so could trigger nasty bug in Gabble like this crash: https://bugs.freedesktop.org/show_bug.cgi?id=39768
Created attachment 197071 [details] [review] Factor out call_new_with_streams()
Created attachment 197072 [details] [review] Don't try to request a Call channel if built without Call support
Comment on attachment 197071 [details] [review] Factor out call_new_with_streams() ++
Comment on attachment 197072 [details] [review] Don't try to request a Call channel if built without Call support >+#ifdef HAVE_CALL > GHashTable * > empathy_call_create_call_request (const gchar *contact, > gboolean initial_audio, >@@ -94,6 +95,7 @@ empathy_call_create_call_request (const gchar *contact, > initial_video, > NULL); > } >+#endif If you #ifdef this here, you should do it in the header too. I'd just not #ifdef it at all. Looks good otherwise.
Created attachment 197125 [details] [review] Don't try to request a Call channel if built without Call support
Comment on attachment 197125 [details] [review] Don't try to request a Call channel if built without Call support ++
Attachment 197071 [details] pushed as b6b5e35 - Factor out call_new_with_streams() Attachment 197125 [details] pushed as e13bdb2 - Don't try to request a Call channel if built without Call support