Skip to content
Snippets Groups Projects
Commit 58c58c54 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed debug routines to work before the process heap is created.

parent 014a8bb1
No related branches found
No related tags found
No related merge requests found
......@@ -32,10 +32,14 @@ static inline struct debug_info *get_info(void)
struct debug_info *info = NtCurrentTeb()->debug_info;
if (!info)
{
if (!tmp.str_pos)
{
tmp.str_pos = tmp.strings;
tmp.out_pos = tmp.output;
}
if (!GetProcessHeap()) return &tmp;
/* setup the temp structure in case HeapAlloc wants to print something */
NtCurrentTeb()->debug_info = &tmp;
tmp.str_pos = tmp.strings;
tmp.out_pos = tmp.output;
info = HeapAlloc( GetProcessHeap(), 0, sizeof(*info) );
info->str_pos = info->strings;
info->out_pos = info->output;
......
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