Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1cf04bd7
Commit
1cf04bd7
authored
Mar 30, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix builtin NE module refcounting of 32bit parent.
parent
114c9077
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
ne_module.c
dlls/kernel/ne_module.c
+2
-5
No files found.
dlls/kernel/ne_module.c
View file @
1cf04bd7
...
...
@@ -1167,15 +1167,13 @@ static HINSTANCE16 MODULE_LoadModule16( LPCSTR libname, BOOL implicit, BOOL lib_
if
(
strlen
(
basename
)
<
sizeof
(
dllname
)
-
4
)
{
int
file_exists
;
strcpy
(
dllname
,
basename
);
p
=
strrchr
(
dllname
,
'.'
);
if
(
!
p
)
strcat
(
dllname
,
".dll"
);
for
(
p
=
dllname
;
*
p
;
p
++
)
if
(
*
p
>=
'A'
&&
*
p
<=
'Z'
)
*
p
+=
32
;
if
(
!
(
descr
=
find_dll_descr
(
dllname
)))
{
int
file_exists
;
if
(
wine_dll_get_owner
(
dllname
,
owner
,
sizeof
(
owner
),
&
file_exists
)
==
-
1
)
{
if
(
file_exists
)
return
21
;
/* it may be a Win32 module then */
...
...
@@ -1204,7 +1202,6 @@ static HINSTANCE16 MODULE_LoadModule16( LPCSTR libname, BOOL implicit, BOOL lib_
}
}
}
}
if
(
descr
)
{
...
...
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