mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[RTL]
- Don't print an uninitialized variable in parse_assembly_identity_elem. Spotted by Mark Jansen. CORE-10927 #resolve svn path=/trunk/; revision=71062
This commit is contained in:
@@ -1407,8 +1407,8 @@ static BOOL parse_assembly_identity_elem(xmlbuf_t* xmlbuf, ACTIVATION_CONTEXT* a
|
||||
}
|
||||
else if (xmlstr_cmp(&attr_name, languageW))
|
||||
{
|
||||
DPRINT1("Unsupported yet language attribute (%S)\n",
|
||||
ai->language);
|
||||
DPRINT1("Unsupported yet language attribute (%.*S)\n",
|
||||
attr_value.len, attr_value.ptr);
|
||||
if (!(ai->language = xmlstrdupW(&attr_value))) return FALSE;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user