Lines Matching full:error
133 fprintf (stderr, "Error parsing command line that should work fine: %s\n",
219 GError *error;
221 error = NULL;
222 result = g_shell_unquote (str, &error);
223 if (error == NULL)
226 /* Leaks the error, which is no big deal and easy to fix if we
230 if (error->domain != G_SHELL_ERROR)
231 return g_strdup ("error in domain other than G_SHELL_ERROR");
233 /* It would be nice to check the error message too, but that's
236 switch (error->code)
245 return g_strdup ("bad error code in G_SHELL_ERROR domain");