adsldp: Ignore attribute definitions without NAME.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2020-03-31 19:00:15 +08:00 committed by Alexandre Julliard
parent 4cdc333677
commit 6591ddd58c
1 changed files with 6 additions and 2 deletions

View File

@ -36,8 +36,6 @@ static const struct attribute_type *find_schema_type(const WCHAR *name, const st
for (i = 0; i < count; i++)
{
if (!at[i].name) continue;
off = 0;
for (n = 0; n < at[i].name_count; n++)
@ -360,6 +358,12 @@ struct attribute_type *load_schema(LDAP *ld, ULONG *at_count)
continue;
}
if (!at[count].name)
{
free_attribute_type(&at[count]);
continue;
}
TRACE("oid %s, name %s, name_count %u, syntax %s, single-value %d\n", debugstr_w(at[count].oid),
debugstr_w(at[count].name), at[count].name_count, debugstr_w(at[count].syntax), at[count].single_value);