Hi.
If I call RtlInitUnicodeString() to UNICODE_STRING to assign a string, should I call RtlFreeUnicodeString()?
VOID Test()
{
UNICODE_STRING FilePath = {0,};
RtlInitUnicodeString(&FilePath, gszLogFilePath);
....
RtlFreeUnicodeString(&FilePath);
}
MSDN(https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-rtlinitunicodestring) does not mention RtlFreeUnicodeString().