mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
Update NSS to 3.32.1-RTM
This commit is contained in:
parent
f29876f120
commit
c91ef9012b
512 changed files with 83203 additions and 16839 deletions
|
|
@ -156,8 +156,8 @@ PK11_ReadULongAttribute(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
|
|||
* check to see if a bool has been set.
|
||||
*/
|
||||
CK_BBOOL
|
||||
PK11_HasAttributeSet(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
|
||||
CK_ATTRIBUTE_TYPE type, PRBool haslock)
|
||||
pk11_HasAttributeSet_Lock(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
|
||||
CK_ATTRIBUTE_TYPE type, PRBool haslock)
|
||||
{
|
||||
CK_BBOOL ckvalue = CK_FALSE;
|
||||
CK_ATTRIBUTE theTemplate;
|
||||
|
|
@ -181,6 +181,14 @@ PK11_HasAttributeSet(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
|
|||
return ckvalue;
|
||||
}
|
||||
|
||||
CK_BBOOL
|
||||
PK11_HasAttributeSet(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
|
||||
CK_ATTRIBUTE_TYPE type, PRBool haslock)
|
||||
{
|
||||
PR_ASSERT(haslock == PR_FALSE);
|
||||
return pk11_HasAttributeSet_Lock(slot, id, type, PR_FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
* returns a full list of attributes. Allocate space for them. If an arena is
|
||||
* provided, allocate space out of the arena.
|
||||
|
|
@ -2020,6 +2028,9 @@ PK11_FindObjectsFromNickname(char *nickname, PK11SlotInfo **slotptr,
|
|||
if ((delimit = PORT_Strchr(nickname, ':')) != NULL) {
|
||||
int len = delimit - nickname;
|
||||
tokenName = (char *)PORT_Alloc(len + 1);
|
||||
if (!tokenName) {
|
||||
return CK_INVALID_HANDLE;
|
||||
}
|
||||
PORT_Memcpy(tokenName, nickname, len);
|
||||
tokenName[len] = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue