Commit aeab1b2a authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Fix memory leak in RtlNormalizeString().

Spotted by Piotr Caban. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent fa97cbdf
......@@ -1592,6 +1592,7 @@ NTSTATUS WINAPI RtlNormalizeString( ULONG form, const WCHAR *src, INT src_len, W
res = wine_decompose_string( flags, src, src_len, buf, buf_len );
if (res) break;
buf_len *= 2;
RtlFreeHeap( GetProcessHeap(), 0, buf );
}
}
......
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