summaryrefslogtreecommitdiff
path: root/src/vm/clrex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/clrex.cpp')
-rw-r--r--src/vm/clrex.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/vm/clrex.cpp b/src/vm/clrex.cpp
index 1c1501e54d..ba040b7e81 100644
--- a/src/vm/clrex.cpp
+++ b/src/vm/clrex.cpp
@@ -2002,18 +2002,7 @@ void DECLSPEC_NORETURN EEFileLoadException::Throw(LPCWSTR path, HRESULT hr, Exce
if (hr == E_OUTOFMEMORY)
COMPlusThrowOM();
-#ifndef CROSSGEN_COMPILE
- // Remove path - location must be hidden for security purposes
-
- LPCWSTR pStart = wcsrchr(path, '\\');
- if (pStart != NULL)
- pStart++;
- else
- pStart = path;
-#else
- LPCWSTR pStart = path;
-#endif
- EX_THROW_WITH_INNER(EEFileLoadException, (StackSString(pStart), hr), pInnerException);
+ EX_THROW_WITH_INNER(EEFileLoadException, (StackSString(path), hr), pInnerException);
}
/* static */