mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Consistently use PR memory functions.
This commit is contained in:
parent
7ec8b4bf6f
commit
f6fa2effca
1 changed files with 4 additions and 3 deletions
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "nsAuth.h"
|
||||
#include "nsAuthSambaNTLM.h"
|
||||
#include "nspr.h"
|
||||
#include "prenv.h"
|
||||
#include "plbase64.h"
|
||||
#include "prerror.h"
|
||||
|
|
@ -23,7 +24,7 @@ nsAuthSambaNTLM::~nsAuthSambaNTLM()
|
|||
// ntlm_auth reads from stdin regularly so closing our file handles
|
||||
// should cause it to exit.
|
||||
Shutdown();
|
||||
free(mInitialMessage);
|
||||
PR_Free(mInitialMessage);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -248,7 +249,7 @@ nsAuthSambaNTLM::GetNextToken(const void *inToken,
|
|||
nsCString request;
|
||||
request.AssignLiteral("TT ");
|
||||
request.Append(encoded);
|
||||
free(encoded);
|
||||
PR_Free(encoded);
|
||||
request.Append('\n');
|
||||
|
||||
if (!WriteString(mToChildFD, request))
|
||||
|
|
@ -265,7 +266,7 @@ nsAuthSambaNTLM::GetNextToken(const void *inToken,
|
|||
if (!buf)
|
||||
return NS_ERROR_FAILURE;
|
||||
*outToken = nsMemory::Clone(buf, *outTokenLen);
|
||||
free(buf);
|
||||
PR_Free(buf);
|
||||
if (!*outToken) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue