diff --git a/glib/goption.c b/glib/goption.c index b0fb80c94..9f5b977c4 100644 --- a/glib/goption.c +++ b/glib/goption.c @@ -241,7 +241,7 @@ struct _GOptionContext { GList *groups; - gchar *parameter_string; + gchar *parameter_string; /* (nullable) */ gchar *summary; gchar *description; @@ -364,6 +364,11 @@ g_option_context_new (const gchar *parameter_string) context = g_new0 (GOptionContext, 1); + /* Clear the empty string to NULL, otherwise we end up calling gettext(""), + * which returns the translation header. */ + if (parameter_string != NULL && *parameter_string == '\0') + parameter_string = NULL; + context->parameter_string = g_strdup (parameter_string); context->strict_posix = FALSE; context->help_enabled = TRUE;