mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
Don't leak newTemplate in pk11_copyAttributes()
Cherry-pick of NSS fix from 3.37
This commit is contained in:
parent
749d1d4ae4
commit
1ed60ee41b
1 changed files with 3 additions and 2 deletions
|
|
@ -74,7 +74,7 @@ pk11_copyAttributes(PLArenaPool *arena,
|
|||
return SECFailure;
|
||||
}
|
||||
/* remove the unknown attributes. If we don't have enough attributes
|
||||
* PK11_CreateNewObject() will fail */
|
||||
* PK11_CreateNewObject() will fail */
|
||||
for (i = 0, j = 0; i < copyTemplateCount; i++) {
|
||||
if (copyTemplate[i].ulValueLen != -1) {
|
||||
newTemplate[j] = copyTemplate[i];
|
||||
|
|
@ -88,6 +88,7 @@ pk11_copyAttributes(PLArenaPool *arena,
|
|||
}
|
||||
if (crv != CKR_OK) {
|
||||
PORT_SetError(PK11_MapError(crv));
|
||||
PORT_Free(newTemplate);
|
||||
return SECFailure;
|
||||
}
|
||||
if (targetID == CK_INVALID_HANDLE) {
|
||||
|
|
@ -100,7 +101,7 @@ pk11_copyAttributes(PLArenaPool *arena,
|
|||
copyTemplate, copyTemplateCount);
|
||||
}
|
||||
if (newTemplate) {
|
||||
free(newTemplate);
|
||||
PORT_Free(newTemplate);
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue