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
03cae026
Commit
03cae026
authored
Mar 01, 2013
by
Jeff Muizelaar
Committed by
Alexandre Julliard
Mar 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Store the vendor id in the correct order.
parent
7b004c17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
minidump.c
dlls/dbghelp/minidump.c
+2
-2
No files found.
dlls/dbghelp/minidump.c
View file @
03cae026
...
...
@@ -635,8 +635,8 @@ static unsigned dump_system_info(struct dump_context* dc)
do_x86cpuid
(
0
,
regs0
);
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VendorId
[
0
]
=
regs0
[
1
];
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VendorId
[
1
]
=
regs0
[
2
];
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VendorId
[
2
]
=
regs0
[
3
];
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VendorId
[
1
]
=
regs0
[
3
];
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VendorId
[
2
]
=
regs0
[
2
];
do_x86cpuid
(
1
,
regs1
);
mdSysInfo
.
Cpu
.
X86CpuInfo
.
VersionInformation
=
regs1
[
0
];
mdSysInfo
.
Cpu
.
X86CpuInfo
.
FeatureInformation
=
regs1
[
3
];
...
...
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