1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00

s3-build: fix the build.

Guenther
This commit is contained in:
Günther Deschner 2008-10-22 22:44:04 +02:00
parent f53578daf4
commit 0f89871837

View File

@ -46,7 +46,7 @@ static bool read_negTokenInit(ASN1_DATA *asn1, negTokenInit_t *token)
0 < asn1_tag_remaining(asn1); i++) {
const char *p_oid = NULL;
token->mechTypes =
TALLOC_REALLOC_ARRAY(token->mechTypes, const char *, i + 2);
TALLOC_REALLOC_ARRAY(NULL, token->mechTypes, const char *, i + 2);
if (!token->mechTypes) {
asn1->has_error = True;
return False;
@ -90,7 +90,7 @@ static bool read_negTokenInit(ASN1_DATA *asn1, negTokenInit_t *token)
token->mechListMIC =
data_blob(mechListMIC, strlen(mechListMIC));
TALLO_FREE(mechListMIC);
TALLOC_FREE(mechListMIC);
}
asn1_end_tag(asn1);
break;