[Bug 50553] SetEnvironmentVariableW function sets last error on deleting non-existent variable

WineHQ Bugzilla wine-bugs at winehq.org
Sun Jan 24 11:17:19 CST 2021


https://bugs.winehq.org/show_bug.cgi?id=50553

--- Comment #1 from Mikhail Gorodetsky <topin89 at mail.ru> ---
Forgot `L` literal before "SomeValue" in

```
result = SetEnvironmentVariableW(L"PERL5LIB", "SomeValue");
```

correct should be

```
result = SetEnvironmentVariableW(L"PERL5LIB", L"SomeValue");
```

Just checked, it didn't change anything.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list