diff options
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index 565990b1..1cf9ec0 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -415,7 +415,7 @@ uint32 GetIEMajorVersion() { wchar_t exe_path[MAX_PATH]; HMODULE mod = GetModuleHandle(NULL); GetModuleFileName(mod, exe_path, arraysize(exe_path) - 1); - std::wstring exe_name(file_util::GetFilenameFromPath(exe_path)); + std::wstring exe_name = FilePath(exe_path).BaseName().value(); if (!LowerCaseEqualsASCII(exe_name, kIEImageName)) { ie_major_version = 0; } else { |