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
b5fbb874
Commit
b5fbb874
authored
Jan 27, 2010
by
Juan Lang
Committed by
Alexandre Julliard
Jan 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Return error directly from SOFTPUB_GetFileSubject.
parent
fc1fbf61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
13 deletions
+9
-13
softpub.c
dlls/wintrust/softpub.c
+9
-13
No files found.
dlls/wintrust/softpub.c
View file @
b5fbb874
...
...
@@ -104,26 +104,24 @@ static DWORD SOFTPUB_OpenFile(CRYPT_PROVIDER_DATA *data)
/* Assumes data->pWintrustData->u.pFile exists. Sets data->pPDSip->gSubject to
* the file's subject GUID.
*/
static
BOOL
SOFTPUB_GetFileSubject
(
CRYPT_PROVIDER_DATA
*
data
)
static
DWORD
SOFTPUB_GetFileSubject
(
CRYPT_PROVIDER_DATA
*
data
)
{
BOOL
ret
;
DWORD
err
=
ERROR_SUCCESS
;
if
(
!
WVT_ISINSTRUCT
(
WINTRUST_FILE_INFO
,
data
->
pWintrustData
->
u
.
pFile
->
cbStruct
,
pgKnownSubject
)
||
!
data
->
pWintrustData
->
u
.
pFile
->
pgKnownSubject
)
{
ret
=
CryptSIPRetrieveSubjectGuid
(
if
(
!
CryptSIPRetrieveSubjectGuid
(
data
->
pWintrustData
->
u
.
pFile
->
pcwszFilePath
,
data
->
pWintrustData
->
u
.
pFile
->
hFile
,
&
data
->
u
.
pPDSip
->
gSubject
);
&
data
->
u
.
pPDSip
->
gSubject
))
err
=
GetLastError
();
}
else
{
data
->
u
.
pPDSip
->
gSubject
=
*
data
->
pWintrustData
->
u
.
pFile
->
pgKnownSubject
;
ret
=
TRUE
;
}
TRACE
(
"returning %d
\n
"
,
ret
);
return
ret
;
TRACE
(
"returning %d
\n
"
,
err
);
return
err
;
}
/* Assumes data->u.pPDSip exists, and its gSubject member set.
...
...
@@ -335,11 +333,9 @@ static DWORD SOFTPUB_LoadFileMessage(CRYPT_PROVIDER_DATA *data)
err
=
SOFTPUB_OpenFile
(
data
);
if
(
err
)
goto
error
;
if
(
!
SOFTPUB_GetFileSubject
(
data
))
{
err
=
GetLastError
();
err
=
SOFTPUB_GetFileSubject
(
data
);
if
(
err
)
goto
error
;
}
if
(
!
SOFTPUB_GetSIP
(
data
))
{
err
=
GetLastError
();
...
...
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