mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +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
|
|
@ -12,6 +12,7 @@
|
|||
#include "prio.h"
|
||||
#include "blapi.h"
|
||||
#include "seccomon.h"
|
||||
#include "secerr.h"
|
||||
#include "stdio.h"
|
||||
#include "prmem.h"
|
||||
#include "hasht.h"
|
||||
|
|
@ -233,8 +234,12 @@ static char *
|
|||
mkCheckFileName(const char *libName)
|
||||
{
|
||||
int ln_len = PORT_Strlen(libName);
|
||||
char *output = PORT_Alloc(ln_len + sizeof(SGN_SUFFIX));
|
||||
int index = ln_len + 1 - sizeof("." SHLIB_SUFFIX);
|
||||
char *output = PORT_Alloc(ln_len + sizeof(SGN_SUFFIX));
|
||||
if (!output) {
|
||||
PORT_SetError(SEC_ERROR_NO_MEMORY);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if ((index > 0) &&
|
||||
(PORT_Strncmp(&libName[index],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue