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
123b86fe
Commit
123b86fe
authored
Oct 31, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove an unused global variable.
parent
8f507ff9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
loader.c
dlls/ntdll/unix/loader.c
+4
-4
No files found.
dlls/ntdll/unix/loader.c
View file @
123b86fe
...
...
@@ -389,7 +389,6 @@ const char **dll_paths = NULL;
const
char
**
system_dll_paths
=
NULL
;
const
char
*
user_name
=
NULL
;
SECTION_IMAGE_INFORMATION
main_image_info
=
{
NULL
};
static
const
IMAGE_EXPORT_DIRECTORY
*
ntdll_exports
;
/* adjust an array of pointers to make them into RVAs */
static
inline
void
fixup_rva_ptrs
(
void
*
array
,
BYTE
*
base
,
unsigned
int
count
)
...
...
@@ -1759,12 +1758,13 @@ static void load_ntdll_functions( HMODULE module )
{
void
**
p__wine_unix_call_dispatcher
;
unixlib_handle_t
*
p__wine_unixlib_handle
;
const
IMAGE_EXPORT_DIRECTORY
*
exports
;
ntdll_exports
=
get_module_data_dir
(
module
,
IMAGE_FILE_EXPORT_DIRECTORY
,
NULL
);
assert
(
ntdll_
exports
);
exports
=
get_module_data_dir
(
module
,
IMAGE_DIRECTORY_ENTRY_EXPORT
,
NULL
);
assert
(
exports
);
#define GET_FUNC(name) \
if (!(p##name = (void *)find_named_export( module,
ntdll_
exports, #name ))) \
if (!(p##name = (void *)find_named_export( module, exports, #name ))) \
ERR( "%s not found\n", #name )
GET_FUNC
(
DbgUiRemoteBreakin
);
...
...
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