Commit 6ca71d39 authored by Alexandre Julliard's avatar Alexandre Julliard

Avoid crashing on non-initialized debug info.

parent 5181cda0
......@@ -170,7 +170,7 @@ inline static char *put_string_w( const WCHAR *src, int n )
const char *wine_dbgstr_an( const char *src, int n )
{
char *res, *old_pos;
struct debug_info *info;
struct debug_info *info = get_info();
if (!HIWORD(src))
{
......@@ -180,7 +180,6 @@ const char *wine_dbgstr_an( const char *src, int n )
return res;
}
/* save current position to restore it on exception */
info = NtCurrentTeb()->debug_info;
old_pos = info->str_pos;
__TRY
{
......@@ -201,7 +200,7 @@ const char *wine_dbgstr_an( const char *src, int n )
const char *wine_dbgstr_wn( const WCHAR *src, int n )
{
char *res, *old_pos;
struct debug_info *info;
struct debug_info *info = get_info();
if (!HIWORD(src))
{
......@@ -212,7 +211,6 @@ const char *wine_dbgstr_wn( const WCHAR *src, int n )
}
/* save current position to restore it on exception */
info = NtCurrentTeb()->debug_info;
old_pos = info->str_pos;
__TRY
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment