From af3dcdf9d29451493415d1001276ad39281c11ce Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Wed, 18 Mar 2026 21:34:11 +0000 Subject: [PATCH] Suppress code scan warning --- src/etwtrace/_vsinstrument.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etwtrace/_vsinstrument.c b/src/etwtrace/_vsinstrument.c index e738288..4dabb38 100644 --- a/src/etwtrace/_vsinstrument.c +++ b/src/etwtrace/_vsinstrument.c @@ -322,7 +322,7 @@ static int vsinstrument_exec(PyObject *m) return -1; } - state->hModule = LoadLibraryW(path); + state->hModule = LoadLibraryW(path); // CodeQL [SM01925]: Intentionally loading from env var PyMem_Free(path); if (!state->hModule) { PyErr_SetFromWindowsErr(0);