[PTRun][WindowWalker]Fix analyzer errors (#16887)

This commit is contained in:
Jaime Bernardo
2022-03-08 18:23:45 +00:00
committed by GitHub
parent 0a5bdf6734
commit eb961ee052
3 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
foreach (SearchResult x in searchControllerResults)
{
if (x.Result.Process.Name.ToLower() == "explorer.exe" && x.Result.Process.IsShellProcess)
if (x.Result.Process.Name.ToLower(System.Globalization.CultureInfo.InvariantCulture) == "explorer.exe" && x.Result.Process.IsShellProcess)
{
addExplorerInfo = true;
}