Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
7f6ecdc2
Commit
7f6ecdc2
authored
Jul 05, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Return ERROR_BAD_EXE_FORMAT when builtin dll still not found, since we
most likely loaded a 16-bit builtin.
parent
a4f19d03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
builtin32.c
relay32/builtin32.c
+2
-1
No files found.
relay32/builtin32.c
View file @
7f6ecdc2
...
...
@@ -164,8 +164,9 @@ WINE_MODREF *BUILTIN32_LoadLibraryExA(LPCSTR path, DWORD flags)
if
(
!
(
wm
=
MODULE_FindModule
(
path
)))
wm
=
MODULE_FindModule
(
dllname
);
if
(
!
wm
)
{
ERR
(
"loaded .so but dll %s still not found -
library environment problem or version conflict, check your setup
.
\n
"
,
dllname
);
ERR
(
"loaded .so but dll %s still not found -
16-bit dll or version conflict
.
\n
"
,
dllname
);
/* wine_dll_unload( handle );*/
SetLastError
(
ERROR_BAD_EXE_FORMAT
);
return
NULL
;
}
wm
->
dlhandle
=
handle
;
...
...
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