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
10faa999
Commit
10faa999
authored
Nov 16, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Delete the oid and sip static critical sections when unloading the dll.
parent
3abbbb25
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
oid.c
dlls/crypt32/oid.c
+2
-0
sip.c
dlls/crypt32/sip.c
+1
-0
No files found.
dlls/crypt32/oid.c
View file @
10faa999
...
...
@@ -92,6 +92,7 @@ static void free_function_sets(void)
DeleteCriticalSection
(
&
setCursor
->
cs
);
CryptMemFree
(
setCursor
);
}
DeleteCriticalSection
(
&
funcSetCS
);
}
/* There is no free function associated with this; therefore, the sets are
...
...
@@ -1461,6 +1462,7 @@ static void free_oid_info(void)
list_remove
(
&
info
->
entry
);
CryptMemFree
(
info
);
}
DeleteCriticalSection
(
&
oidInfoCS
);
}
/***********************************************************************
...
...
dlls/crypt32/sip.c
View file @
10faa999
...
...
@@ -616,6 +616,7 @@ void crypt_sip_free(void)
FreeLibrary
(
prov
->
info
.
hSIP
);
CryptMemFree
(
prov
);
}
DeleteCriticalSection
(
&
providers_cs
);
}
/* Loads the SIP for pgSubject into the global cache. Returns FALSE if the
...
...
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