more dealloc functions require HEIM_CALLCONV
Change-Id: I68168a387c088b45e2572d5c982d33dfe0aa38a8
This commit is contained in:
@@ -65,7 +65,7 @@ pa_gss_display_name(gss_name_t name,
|
||||
gss_buffer_t namebuf,
|
||||
gss_const_buffer_t *namebuf_p);
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
pa_gss_dealloc_client_params(void *ptr);
|
||||
|
||||
/*
|
||||
@@ -858,7 +858,7 @@ _kdc_gss_mk_composite_name_ad(astgs_request_t r,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
pa_gss_dealloc_client_params(void *ptr)
|
||||
{
|
||||
gss_client_params *gcp = ptr;
|
||||
|
@@ -46,7 +46,7 @@ struct heim_array_data {
|
||||
heim_object_t *allocated;
|
||||
};
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
array_dealloc(heim_object_t ptr)
|
||||
{
|
||||
heim_array_t array = ptr;
|
||||
|
@@ -34,7 +34,7 @@
|
||||
#include "baselocl.h"
|
||||
#include <string.h>
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
data_dealloc(void *ptr)
|
||||
{
|
||||
heim_data_t d = ptr;
|
||||
|
@@ -84,7 +84,7 @@ static int open_file(const char *, int , int, int *, heim_error_t *);
|
||||
static int read_json(const char *, heim_object_t *, heim_error_t *);
|
||||
static struct heim_db_type json_dbt;
|
||||
|
||||
static void db_dealloc(void *ptr);
|
||||
static void HEIM_CALLCONV db_dealloc(void *ptr);
|
||||
|
||||
struct heim_type_data db_object = {
|
||||
HEIM_TID_DB,
|
||||
@@ -242,7 +242,7 @@ heim_db_register(const char *dbtype,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
db_dealloc(void *arg)
|
||||
{
|
||||
heim_db_t db = arg;
|
||||
|
@@ -47,7 +47,7 @@ struct heim_dict_data {
|
||||
struct hashentry **tab;
|
||||
};
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
dict_dealloc(void *ptr)
|
||||
{
|
||||
heim_dict_t dict = ptr;
|
||||
|
@@ -41,7 +41,7 @@ struct heim_error {
|
||||
struct heim_error *next;
|
||||
};
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
error_dealloc(void *ptr)
|
||||
{
|
||||
struct heim_error *p = ptr;
|
||||
|
@@ -35,7 +35,7 @@
|
||||
|
||||
#include "baselocl.h"
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
number_dealloc(void *ptr)
|
||||
{
|
||||
}
|
||||
|
@@ -156,7 +156,7 @@ struct heim_plugin {
|
||||
void *ctx;
|
||||
};
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
plugin_free(void *ptr)
|
||||
{
|
||||
struct heim_plugin *pl = ptr;
|
||||
|
@@ -36,7 +36,7 @@
|
||||
#include "baselocl.h"
|
||||
#include <string.h>
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
string_dealloc(void *ptr)
|
||||
{
|
||||
heim_string_t s = ptr;
|
||||
|
@@ -2151,7 +2151,7 @@ pa_announce(krb5_context context,
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
mech_dealloc(void *ctx)
|
||||
{
|
||||
struct pa_auth_mech *pa_mech = ctx;
|
||||
|
@@ -101,7 +101,7 @@ struct krb5_pac_data {
|
||||
|
||||
static const char zeros[PAC_ALIGNMENT];
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
pac_dealloc(void *ctx)
|
||||
{
|
||||
krb5_pac pac = (krb5_pac)ctx;
|
||||
|
@@ -386,7 +386,7 @@ debug_host(krb5_context context, int level, struct host *host, const char *fmt,
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
static void HEIM_CALLCONV
|
||||
deallocate_host(void *ptr)
|
||||
{
|
||||
struct host *host = ptr;
|
||||
|
Reference in New Issue
Block a user