gssapi: import mechglue allocation utility functions from Heimdal-520

Apple's Heimdal impelmentation uses a number of utility functions for
allocating names and credentials, to avoid calling malloc or calloc directly.
Import them.
This commit is contained in:
Luke Howard
2019-01-03 10:17:26 +11:00
committed by Nico Williams
parent e0bb9c10ca
commit 83f15553e0
22 changed files with 163 additions and 86 deletions

View File

@@ -132,12 +132,11 @@ gss_duplicate_cred(OM_uint32 *minor_status,
}
*output_cred_handle = GSS_C_NO_CREDENTIAL;
new_cred = malloc(sizeof(struct _gss_cred));
new_cred = _gss_mg_alloc_cred();
if (!new_cred) {
*minor_status = ENOMEM;
return GSS_S_FAILURE;
}
HEIM_SLIST_INIT(&new_cred->gc_mc);
*minor_status = 0;
major_status = GSS_S_NO_CRED;