https://bugs.winehq.org/show_bug.cgi?id=39361
Sebastian Lackner sebastian@fds-team.de changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW URL|http://wildstar.patcher.ncs |http://wildstar.patcher.ncs |oft.com/Wildstar.exe |oft.com/PTR/WildStarPTR.exe Ever confirmed|0 |1
--- Comment #4 from Sebastian Lackner sebastian@fds-team.de --- Confirming. However, I couldn't reproduce the issue with your original link, only with the WildStarPTR.exe download. I've replaced it above.
With the following hack the installer proceeds:
--- snip --- --- a/dlls/kernel32/actctx.c +++ b/dlls/kernel32/actctx.c @@ -124,7 +124,7 @@ HANDLE WINAPI CreateActCtxW(PCACTCTXW pActCtx) if ((status = RtlCreateActivationContext(&hActCtx, pActCtx))) { SetLastError(RtlNtStatusToDosError(status)); - return INVALID_HANDLE_VALUE; + return 0; } return hActCtx; } --- snip ---