Fixed regression on internal vars.

oldstable
Eric Pouech 2002-07-30 00:03:34 +00:00 committed by Alexandre Julliard
parent 29f265fab1
commit 6f129541d1
1 changed files with 4 additions and 4 deletions

View File

@ -988,6 +988,10 @@ int main(int argc, char** argv)
DWORD retv = 0;
unsigned gdb_flags = 0;
/* Initialize the type handling stuff. */
DEBUG_InitTypes();
DEBUG_InitCVDataTypes();
/* Initialize internal vars (types must have been initialized before) */
if (!DEBUG_IntVarsRW(TRUE)) return -1;
@ -1103,10 +1107,6 @@ int main(int argc, char** argv)
if (local_mode == gdb_mode && DEBUG_CurrPid)
return DEBUG_GdbRemote(gdb_flags);
/* Initialize the type handling stuff. */
DEBUG_InitTypes();
DEBUG_InitCVDataTypes();
DEBUG_InitConsole();
retv = DEBUG_MainLoop();