[PATCH v2 0/1] MR4190: nsiproxy.sys: Return STATUS_SUCCES from ipv6_forward_enumerate_all() on non-Linux.
This restores behavior from before 5a7d75cd347369ed14dcccc84e796dda20d77580. This fixes the Rockstar Games Launcher on macOS. -- v2: nsiproxy.sys: Return STATUS_SUCCESS from ipv6_forward_enumerate_all() on non-Linux. https://gitlab.winehq.org/wine/wine/-/merge_requests/4190
From: Sven Baars <sbaars(a)codeweavers.com> This restores behavior from before 5a7d75cd347369ed14dcccc84e796dda20d77580. --- dlls/nsiproxy.sys/ip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/nsiproxy.sys/ip.c b/dlls/nsiproxy.sys/ip.c index c5d1c596246..fe49caa6e57 100644 --- a/dlls/nsiproxy.sys/ip.c +++ b/dlls/nsiproxy.sys/ip.c @@ -1614,7 +1614,8 @@ static NTSTATUS ipv6_forward_enumerate_all( void *key_data, UINT key_size, void } #else FIXME( "not implemented\n" ); - return STATUS_NOT_IMPLEMENTED; + *count = 0; + return STATUS_SUCCESS; #endif if (!want_data || num <= *count) *count = num; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/4190
On Fri Oct 27 16:36:17 2023 +0000, Huw Davies wrote:
Could you please change the commit message to use STATUS_SUCCESS? Done. Thanks for spotting that!
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4190#note_49991
This merge request was approved by Huw Davies. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4190
participants (3)
-
Huw Davies (@huw) -
Sven Baars -
Sven Baars (@sbaars)