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
915a4bac
Commit
915a4bac
authored
Mar 30, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed regression in VERSION_GetLinkedDllVersion() introduced by
previous change.
parent
2f5e5f3d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
version.c
misc/version.c
+3
-5
No files found.
misc/version.c
View file @
915a4bac
...
...
@@ -460,7 +460,7 @@ static DWORD VERSION_GetLinkedDllVersion(void)
{
if
(
LdrQueryProcessModuleInformation
(
smi
,
required
,
NULL
)
==
STATUS_SUCCESS
)
{
int
k
;
int
i
,
k
;
for
(
k
=
0
;
k
<
smi
->
ModulesCount
;
k
++
)
{
nt
=
RtlImageNtHeader
(
smi
->
Modules
[
k
].
ImageBaseAddress
);
...
...
@@ -472,12 +472,10 @@ static DWORD VERSION_GetLinkedDllVersion(void)
ophd
->
MajorOperatingSystemVersion
,
ophd
->
MinorOperatingSystemVersion
,
ophd
->
MajorImageVersion
,
ophd
->
MinorImageVersion
,
ophd
->
MajorSubsystemVersion
,
ophd
->
MinorSubsystemVersion
);
}
/* test if it is an external (native) dll */
if
(
!
(
smi
->
Modules
[
k
].
Flags
&
LDR_WINE_INTERNAL
))
{
int
i
;
if
(
smi
->
Modules
[
k
].
Flags
&
LDR_WINE_INTERNAL
)
continue
;
for
(
i
=
0
;
special_dlls
[
i
];
i
++
)
{
/* test if it is a special dll */
...
...
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