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
9352509e
Commit
9352509e
authored
Dec 11, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Dec 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Free OpenSSL error strings at unload.
parent
01a7cbf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
net.c
dlls/winhttp/net.c
+3
-0
No files found.
dlls/winhttp/net.c
View file @
9352509e
...
...
@@ -122,6 +122,7 @@ MAKE_FUNCPTR( BIO_new_fp );
MAKE_FUNCPTR
(
CRYPTO_num_locks
);
MAKE_FUNCPTR
(
CRYPTO_set_id_callback
);
MAKE_FUNCPTR
(
CRYPTO_set_locking_callback
);
MAKE_FUNCPTR
(
ERR_free_strings
);
MAKE_FUNCPTR
(
ERR_get_error
);
MAKE_FUNCPTR
(
ERR_error_string
);
MAKE_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
...
...
@@ -442,6 +443,7 @@ BOOL netconn_init( netconn_t *conn, BOOL secure )
LOAD_FUNCPTR
(
CRYPTO_num_locks
);
LOAD_FUNCPTR
(
CRYPTO_set_id_callback
);
LOAD_FUNCPTR
(
CRYPTO_set_locking_callback
);
LOAD_FUNCPTR
(
ERR_free_strings
);
LOAD_FUNCPTR
(
ERR_get_error
);
LOAD_FUNCPTR
(
ERR_error_string
);
LOAD_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
...
...
@@ -499,6 +501,7 @@ void netconn_unload( void )
#if defined(SONAME_LIBSSL) && defined(SONAME_LIBCRYPTO)
if
(
libcrypto_handle
)
{
pERR_free_strings
();
wine_dlclose
(
libcrypto_handle
,
NULL
,
0
);
}
if
(
libssl_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