From 6b9cb8d81df40eb94a6e4ed6bb9c0361459f3c71 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 24 Jul 2024 16:34:42 -0600 Subject: [PATCH] Fix issue with da6b0a2 --- Library/Util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Util.cpp b/Library/Util.cpp index c74371ac..82625726 100644 --- a/Library/Util.cpp +++ b/Library/Util.cpp @@ -88,7 +88,7 @@ void RmNullCRTInvalidParameterHandler(const wchar_t* expression, const wchar_t* { #ifdef _DEBUG - if (*function && *file) + if (function && file) { LogErrorF(L"Invalid parameter detected. Function: \"%s\" File: \"%s:%d\" Expression: \"%s\"", function, file, line, expression); return;