X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/f15aefe4e0bb264fc1ceac17c7bbe1a534d190c9..b4ececfc649ba051ccffe1029637f7262a59d8a0:/rsa.c diff --git a/rsa.c b/rsa.c index f7dd69d..bdacfe9 100644 --- a/rsa.c +++ b/rsa.c @@ -177,7 +177,7 @@ static list_t *rsapub_apply(closure_t *self, struct cloc loc, dict_t *context, item_t *i; string_t e,n; - st=safe_malloc(sizeof(*st),"rsapub_apply"); + NEW(st); st->cl.description="rsapub"; st->cl.type=CL_RSAPUBKEY; st->cl.apply=NULL; @@ -255,7 +255,7 @@ static list_t *rsapriv_apply(closure_t *self, struct cloc loc, dict_t *context, MP_INT e,d,iqmp,tmp,tmp2,tmp3; bool_t valid; - st=safe_malloc(sizeof(*st),"rsapriv_apply"); + NEW(st); st->cl.description="rsapriv"; st->cl.type=CL_RSAPRIVKEY; st->cl.apply=NULL;