Merge branch 'issue-1973' into 'gtk-3-24'

Do not add empty strings to GtkFileFilter

See merge request GNOME/gtk!957
This commit is contained in:
Matthias Clasen 2019-06-24 11:21:52 +00:00
commit a5cf2c4b19

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)
{