Module: wine Branch: master Commit: f93d7114c77c7ae2a4fbbc744ab89102f8ed3e01 URL: https://gitlab.winehq.org/wine/wine/-/commit/f93d7114c77c7ae2a4fbbc744ab8910...
Author: Eric Pouech epouech@codeweavers.com Date: Fri Jun 30 14:14:46 2023 +0200
dbghelp/tests: Use indirect call for SymSetExtendedOption.
(sigh 1d281c62 was incomplete).
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55128 Signed-off-by: Eric Pouech epouech@codeweavers.com
---
dlls/dbghelp/tests/dbghelp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/tests/dbghelp.c b/dlls/dbghelp/tests/dbghelp.c index c456a99d370..9e8b308b4af 100644 --- a/dlls/dbghelp/tests/dbghelp.c +++ b/dlls/dbghelp/tests/dbghelp.c @@ -331,7 +331,7 @@ static unsigned get_native_module_count(HANDLE proc) old = pSymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, TRUE); ret = SymEnumerateModules64(proc, count_native_module_cb, &count); ok(ret, "SymEnumerateModules64 failed: %lu\n", GetLastError()); - SymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, old); + pSymSetExtendedOption(SYMOPT_EX_WINE_NATIVE_MODULES, old);
return count; }