Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

PKCS #11 Refactor #2008

Merged
merged 10 commits into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ CK_RV xDestroyProvidedObjects( CK_SESSION_HANDLE xSession,
pxLabel = ppxPkcsLabels[ uiIndex ];

xResult = xFindObjectWithLabelAndClass( xSession,
( const char * ) pxLabel,
( char * ) pxLabel,
xClass[ uiIndex ],
&xObjectHandle );

Expand All @@ -762,7 +762,7 @@ CK_RV xDestroyProvidedObjects( CK_SESSION_HANDLE xSession,
if( xResult == CKR_OK )
{
xResult = xFindObjectWithLabelAndClass( xSession,
( const char * ) pxLabel,
( char * ) pxLabel,
xClass[ uiIndex ],
&xObjectHandle );
}
Expand Down
Loading