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
c6548391
Commit
c6548391
authored
Nov 11, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Nov 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Prevent gnutls from using system priority file.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
11d09da6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
schannel_gnutls.c
dlls/secur32/schannel_gnutls.c
+11
-0
No files found.
dlls/secur32/schannel_gnutls.c
View file @
c6548391
...
...
@@ -977,8 +977,19 @@ static void schan_gnutls_log(int level, const char *msg)
BOOL
schan_imp_init
(
void
)
{
const
char
*
env_str
;
int
ret
;
if
((
env_str
=
getenv
(
"GNUTLS_SYSTEM_PRIORITY_FILE"
)))
{
WARN
(
"GNUTLS_SYSTEM_PRIORITY_FILE is %s.
\n
"
,
debugstr_a
(
env_str
));
}
else
{
WARN
(
"Setting GNUTLS_SYSTEM_PRIORITY_FILE to
\"
/dev/null
\"
.
\n
"
);
setenv
(
"GNUTLS_SYSTEM_PRIORITY_FILE"
,
"/dev/null"
,
0
);
}
libgnutls_handle
=
dlopen
(
SONAME_LIBGNUTLS
,
RTLD_NOW
);
if
(
!
libgnutls_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