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
528876c4
Commit
528876c4
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_LoadCatalogMessage.
parent
9e8e14ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
16 deletions
+25
-16
softpub.c
dlls/wintrust/softpub.c
+25
-16
No files found.
dlls/wintrust/softpub.c
View file @
528876c4
...
...
@@ -364,9 +364,9 @@ error:
return
err
;
}
static
BOOL
SOFTPUB_LoadCatalogMessage
(
CRYPT_PROVIDER_DATA
*
data
)
static
DWORD
SOFTPUB_LoadCatalogMessage
(
CRYPT_PROVIDER_DATA
*
data
)
{
BOOL
ret
;
DWORD
err
;
HANDLE
catalog
=
INVALID_HANDLE_VALUE
;
if
(
!
data
->
pWintrustData
->
u
.
pCatalog
)
...
...
@@ -378,27 +378,36 @@ static BOOL SOFTPUB_LoadCatalogMessage(CRYPT_PROVIDER_DATA *data)
GENERIC_READ
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
if
(
catalog
==
INVALID_HANDLE_VALUE
)
return
FALSE
;
ret
=
CryptSIPRetrieveSubjectGuid
(
return
GetLastError
()
;
if
(
!
CryptSIPRetrieveSubjectGuid
(
data
->
pWintrustData
->
u
.
pCatalog
->
pcwszCatalogFilePath
,
catalog
,
&
data
->
u
.
pPDSip
->
gSubject
);
if
(
!
ret
)
&
data
->
u
.
pPDSip
->
gSubject
))
{
err
=
GetLastError
();
goto
error
;
ret
=
SOFTPUB_GetSIP
(
data
);
if
(
!
ret
)
}
if
(
!
SOFTPUB_GetSIP
(
data
))
{
err
=
GetLastError
();
goto
error
;
ret
=
SOFTPUB_GetMessageFromFile
(
data
,
catalog
,
data
->
pWintrustData
->
u
.
pCatalog
->
pcwszCatalogFilePath
);
if
(
!
ret
)
}
if
(
!
SOFTPUB_GetMessageFromFile
(
data
,
catalog
,
data
->
pWintrustData
->
u
.
pCatalog
->
pcwszCatalogFilePath
))
{
err
=
GetLastError
();
goto
error
;
ret
=
SOFTPUB_CreateStoreFromMessage
(
data
);
if
(
!
ret
)
}
if
(
!
SOFTPUB_CreateStoreFromMessage
(
data
))
{
err
=
GetLastError
();
goto
error
;
ret
=
SOFTPUB_DecodeInnerContent
(
data
);
}
if
(
!
SOFTPUB_DecodeInnerContent
(
data
))
err
=
GetLastError
();
/* FIXME: this loads the catalog file, but doesn't validate the member. */
error:
CloseHandle
(
catalog
);
return
ret
;
return
err
;
}
HRESULT
WINAPI
SoftpubLoadMessage
(
CRYPT_PROVIDER_DATA
*
data
)
...
...
@@ -420,7 +429,7 @@ HRESULT WINAPI SoftpubLoadMessage(CRYPT_PROVIDER_DATA *data)
err
=
SOFTPUB_LoadFileMessage
(
data
);
break
;
case
WTD_CHOICE_CATALOG
:
ret
=
SOFTPUB_LoadCatalogMessage
(
data
);
err
=
SOFTPUB_LoadCatalogMessage
(
data
);
break
;
default:
FIXME
(
"unimplemented for %d
\n
"
,
data
->
pWintrustData
->
dwUnionChoice
);
...
...
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