From 5148da5209099ba5d193da4cbc42298670a01f14 Mon Sep 17 00:00:00 2001 From: roytam1 Date: Wed, 19 Jan 2022 10:19:41 +0800 Subject: [PATCH] Issue #unknown, update mozglue delay-load DLL list. --- platform/mozglue/build/moz.build | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/platform/mozglue/build/moz.build b/platform/mozglue/build/moz.build index de7feb76a..9197eda1b 100644 --- a/platform/mozglue/build/moz.build +++ b/platform/mozglue/build/moz.build @@ -18,7 +18,13 @@ if CONFIG['MOZ_ASAN']: if CONFIG['OS_TARGET'] == 'WINNT': DEFFILE = 'mozglue.def' # We'll break the DLL blocklist if we immediately load user32.dll - DELAYLOAD_DLLS += ['user32.dll'] + # For the same reason, we delayload these other DLLs to avoid eager + # dependencies on user32.dll. + DELAYLOAD_DLLS += [ + 'dbghelp.dll', + 'user32.dll', + 'version.dll', + ] if not CONFIG['JS_STANDALONE']: