Do not add empty strings to GtkFileFilter

When parsing a UI description for GtkFileFilter we should avoid passing
empty strings, to avoid issues when serialising the filter before
sending it over DBus.

Fixes: #1973
This commit is contained in:
Emmanuele Bassi
2019-06-24 10:53:31 +01:00
parent e873c98e25
commit 6cdb165fa4

View File

@ -299,7 +299,7 @@ parser_end_element (GMarkupParseContext *context,
{
SubParserData *data = (SubParserData*)user_data;
if (data->string)
if (data->string != NULL && data->string->len != 0)
{
switch (data->type)
{