Kaydet (Commit) 6e9c126b authored tarafından Colomban Wendling's avatar Colomban Wendling

TM: Don't call tm_tags_dedup() on a NULL array

üst d6c98f5a
......@@ -1073,7 +1073,8 @@ tm_workspace_find_scope_members (TMSourceFile *source_file, const char *name,
g_ptr_array_free(tags, TRUE);
}
tm_tags_dedup(member_tags, sort_attr, FALSE);
if (member_tags)
tm_tags_dedup(member_tags, sort_attr, FALSE);
return member_tags;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment