Module: wine Branch: master Commit: c20fd880acad6a79250e672c25b82bf76f15402d URL: http://source.winehq.org/git/wine.git/?a=commit;h=c20fd880acad6a79250e672c25... Author: Daniel Lehman <dlehman(a)esri.com> Date: Tue Jan 3 17:10:17 2012 -0800 msvcp90: Make type_info::mangled larger. --- dlls/msvcp90/msvcp90.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/msvcp90.h b/dlls/msvcp90/msvcp90.h index bdeaa80..a57eedf 100644 --- a/dlls/msvcp90/msvcp90.h +++ b/dlls/msvcp90/msvcp90.h @@ -172,8 +172,8 @@ void set_exception_vtable(void); typedef struct __type_info { const vtable_ptr *vtable; - char *name; /* Unmangled name, allocated lazily */ - char mangled[64]; /* Variable length, but we declare it large enough for static RTTI */ + char *name; /* Unmangled name, allocated lazily */ + char mangled[128]; /* Variable length, but we declare it large enough for static RTTI */ } type_info; /* offsets for computing the this pointer */