pidgin/plugins/gevolution/gevolution.c

branch
soc.2013.gobjectification.plugins
changeset 37146
b5b9c75a4b54
parent 37143
728319cb659f
parent 36052
13c42d85fc7b
child 37990
710f725725a8
equal deleted inserted replaced
37145:8826f95514fd 37146:b5b9c75a4b54
242 char *quoted = g_shell_quote(mail); 242 char *quoted = g_shell_quote(mail);
243 char *command_line = g_strdup_printf("%s mailto:%s", app, quoted); 243 char *command_line = g_strdup_printf("%s mailto:%s", app, quoted);
244 g_free(app); 244 g_free(app);
245 g_free(mail); 245 g_free(mail);
246 246
247 g_spawn_command_line_async(command_line, NULL); 247 if (!g_spawn_command_line_async(command_line, NULL)) {
248 purple_debug_error("gevolution",
249 "Failed executing mailto command");
250 }
248 g_free(command_line); 251 g_free(command_line);
249 g_free(quoted); 252 g_free(quoted);
250 } 253 }
251 else 254 else
252 { 255 {

mercurial