Allow empty rail strings.
This commit is contained in:
parent
ba69925b8d
commit
93846c801a
@ -60,7 +60,7 @@ BOOL rail_string_to_unicode_string(const char* string, RAIL_UNICODE_STRING* unic
|
|||||||
unicode_string->length = 0;
|
unicode_string->length = 0;
|
||||||
|
|
||||||
if (!string || strlen(string) < 1)
|
if (!string || strlen(string) < 1)
|
||||||
return FALSE;
|
return TRUE;
|
||||||
|
|
||||||
length = ConvertToUnicode(CP_UTF8, 0, string, -1, &buffer, 0) * 2;
|
length = ConvertToUnicode(CP_UTF8, 0, string, -1, &buffer, 0) * 2;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user