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
18408b18
Commit
18408b18
authored
Aug 10, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make release_builtin_module() static.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
32ec7d7b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
unix_private.h
dlls/ntdll/unix/unix_private.h
+0
-1
virtual.c
dlls/ntdll/unix/virtual.c
+2
-3
No files found.
dlls/ntdll/unix/unix_private.h
View file @
18408b18
...
...
@@ -229,7 +229,6 @@ extern void virtual_set_force_exec( BOOL enable ) DECLSPEC_HIDDEN;
extern
void
virtual_set_large_address_space
(
void
)
DECLSPEC_HIDDEN
;
extern
void
virtual_fill_image_information
(
const
pe_image_info_t
*
pe_info
,
SECTION_IMAGE_INFORMATION
*
info
)
DECLSPEC_HIDDEN
;
extern
NTSTATUS
release_builtin_module
(
void
*
module
)
DECLSPEC_HIDDEN
;
extern
void
*
get_builtin_so_handle
(
void
*
module
)
DECLSPEC_HIDDEN
;
extern
NTSTATUS
get_builtin_unix_info
(
void
*
module
,
const
char
**
name
,
void
**
handle
,
void
**
entry
)
DECLSPEC_HIDDEN
;
extern
NTSTATUS
set_builtin_unix_info
(
void
*
module
,
const
char
*
name
,
void
*
handle
,
void
*
entry
)
DECLSPEC_HIDDEN
;
...
...
dlls/ntdll/unix/virtual.c
View file @
18408b18
...
...
@@ -615,7 +615,7 @@ static void add_builtin_module( void *module, void *handle )
/***********************************************************************
* release_builtin_module
*/
NTSTATUS
release_builtin_module
(
void
*
module
)
static
void
release_builtin_module
(
void
*
module
)
{
struct
builtin_module
*
builtin
;
...
...
@@ -630,9 +630,8 @@ NTSTATUS release_builtin_module( void *module )
free
(
builtin
->
unix_name
);
free
(
builtin
);
}
return
STATUS_SUCCESS
;
break
;
}
return
STATUS_INVALID_PARAMETER
;
}
...
...
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