diff options
author | Lakshmi Priya Sekar <lasekar@microsoft.com> | 2015-09-17 13:00:36 -0700 |
---|---|---|
committer | Lakshmi Priya Sekar <lasekar@microsoft.com> | 2015-09-21 14:34:51 -0700 |
commit | b8282e0b7359e1abbcfdf4574621118b4f61d377 (patch) | |
tree | eb56fb869cbe63685dc99e3ca3d8f9821a217788 /src/binder/inc | |
parent | 8811dcdddbbde43e8286bfe29765fe4bd3ae328d (diff) | |
download | coreclr-b8282e0b7359e1abbcfdf4574621118b4f61d377.tar.gz coreclr-b8282e0b7359e1abbcfdf4574621118b4f61d377.tar.bz2 coreclr-b8282e0b7359e1abbcfdf4574621118b4f61d377.zip |
Use SString type for path allocations in binder.
Diffstat (limited to 'src/binder/inc')
-rw-r--r-- | src/binder/inc/bindertypes.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binder/inc/bindertypes.hpp b/src/binder/inc/bindertypes.hpp index 3c4bed4514..62c6fa61e0 100644 --- a/src/binder/inc/bindertypes.hpp +++ b/src/binder/inc/bindertypes.hpp @@ -32,7 +32,7 @@ class PEAssembly; namespace BINDER_SPACE { - typedef InlineSString<MAX_LONGPATH + 1> PathString; + typedef InlineSString<512> PathString; class AssemblyVersion; class AssemblyName; |