Skip to content
Snippets Groups Projects
Commit 6f129541 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard
Browse files

Fixed regression on internal vars.

parent 29f265fa
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment