Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
45e12c7c
Commit
45e12c7c
authored
Jul 29, 2010
by
Alex Brainman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: fix bug introduced in revision 4a01b8d28570
R=rsc CC=golang-dev
https://golang.org/cl/1874046
parent
adc13b1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/pkg/runtime/windows/thread.c
src/pkg/runtime/windows/thread.c
+1
-1
No files found.
src/pkg/runtime/windows/thread.c
View file @
45e12c7c
...
...
@@ -287,7 +287,7 @@ void
call_syscall
(
void
*
args
)
{
StdcallParams
*
p
=
(
StdcallParams
*
)
args
;
stdcall_raw
(
SetLastError
,
1
,
0
);
stdcall_raw
(
SetLastError
,
0
);
p
->
r
=
(
uintptr
)
stdcall_raw
((
void
*
)
p
->
fn
,
p
->
args
[
0
],
p
->
args
[
1
],
p
->
args
[
2
],
p
->
args
[
3
],
p
->
args
[
4
],
p
->
args
[
5
],
p
->
args
[
6
],
p
->
args
[
7
],
p
->
args
[
8
],
p
->
args
[
9
],
p
->
args
[
10
],
p
->
args
[
11
]);
p
->
err
=
(
uintptr
)
stdcall_raw
(
GetLastError
);
return
;
...
...
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