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
fce67d1e
Commit
fce67d1e
authored
Nov 08, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Use SecureZeroMemory() to clear magic fields.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
c20a0dc6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
crypt.c
dlls/wintrust/crypt.c
+6
-3
No files found.
dlls/wintrust/crypt.c
View file @
fce67d1e
...
@@ -424,7 +424,8 @@ BOOL WINAPI CryptCATAdminReleaseCatalogContext(HCATADMIN hCatAdmin,
...
@@ -424,7 +424,8 @@ BOOL WINAPI CryptCATAdminReleaseCatalogContext(HCATADMIN hCatAdmin,
SetLastError
(
ERROR_INVALID_PARAMETER
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
return
FALSE
;
}
}
ci
->
magic
=
0
;
/* Ensure compiler doesn't optimize out the assignment with 0. */
SecureZeroMemory
(
&
ci
->
magic
,
sizeof
(
ci
->
magic
));
free
(
ci
);
free
(
ci
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -455,7 +456,8 @@ BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
...
@@ -455,7 +456,8 @@ BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
return
FALSE
;
return
FALSE
;
}
}
if
(
ca
->
find
!=
INVALID_HANDLE_VALUE
)
FindClose
(
ca
->
find
);
if
(
ca
->
find
!=
INVALID_HANDLE_VALUE
)
FindClose
(
ca
->
find
);
ca
->
magic
=
0
;
/* Ensure compiler doesn't optimize out the assignment with 0. */
SecureZeroMemory
(
&
ca
->
magic
,
sizeof
(
ca
->
magic
));
free
(
ca
);
free
(
ca
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -555,7 +557,8 @@ BOOL WINAPI CryptCATClose(HANDLE hCatalog)
...
@@ -555,7 +557,8 @@ BOOL WINAPI CryptCATClose(HANDLE hCatalog)
free
(
cc
->
inner
);
free
(
cc
->
inner
);
CryptMsgClose
(
cc
->
msg
);
CryptMsgClose
(
cc
->
msg
);
cc
->
magic
=
0
;
/* Ensure compiler doesn't optimize out the assignment with 0. */
SecureZeroMemory
(
&
cc
->
magic
,
sizeof
(
cc
->
magic
));
free
(
cc
);
free
(
cc
);
return
TRUE
;
return
TRUE
;
}
}
...
...
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