Commit 6591ddd5 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

adsldp: Ignore attribute definitions without NAME.

parent 4cdc3336
......@@ -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);
......
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