From 03c3f4c39d098a8a2304df08a349c98d22c901c5 Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Thu, 17 Oct 2013 11:00:27 +0200 Subject: [PATCH] Added msvcr*.dll to windows runtime folding of module names --- htdocs/lib/CrashReport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/CrashReport.php b/htdocs/lib/CrashReport.php index 3596000..50d42e6 100644 --- a/htdocs/lib/CrashReport.php +++ b/htdocs/lib/CrashReport.php @@ -265,7 +265,7 @@ class CrashReport { $f->module = "llcommon"; } - else if (preg_match("/(kernel|ntdll).*\\.dll/i", $f->module)) + else if (preg_match("/(kernel|ntdll|msvcr).*\\.dll/i", $f->module)) { $f->module = "windows-runtime"; } else if (preg_match("/libc.*\\.so/i", $f->module))