msvcp90: Make type_info::mangled larger.

This commit is contained in:
Daniel Lehman 2012-01-03 17:10:17 -08:00 committed by Alexandre Julliard
parent 568c3215b0
commit c20fd880ac
1 changed files with 2 additions and 2 deletions

View File

@ -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 */