Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
01de6dce
Commit
01de6dce
authored
Jan 29, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix: added temp structure to cope with debug traces during thread
startup.
parent
0dd3655f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
debugstr.c
misc/debugstr.c
+8
-1
No files found.
misc/debugstr.c
View file @
01de6dce
...
...
@@ -18,14 +18,21 @@ struct debug_info
char
output
[
500
];
/* current output line */
};
static
struct
debug_info
tmp
;
static
inline
struct
debug_info
*
get_info
(
void
)
{
struct
debug_info
*
info
=
NtCurrentTeb
()
->
debug_info
;
if
(
!
info
)
{
NtCurrentTeb
()
->
debug_info
=
info
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
info
)
);
/* 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
;
NtCurrentTeb
()
->
debug_info
=
info
;
}
return
info
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment