X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/54d5ef0053f1f9ef4e34dacba002513e5ccea0fd..887c6ac76e2435cdbb89f3e0df423fac75ec373c:/comm-common.c diff --git a/comm-common.c b/comm-common.c index d880055..7528e92 100644 --- a/comm-common.c +++ b/comm-common.c @@ -7,7 +7,7 @@ void comm_request_notify(void *commst, void *nst, comm_notify_fn *fn) struct commcommon *st=commst; struct comm_notify_entry *n; - n=safe_malloc(sizeof(*n),"comm_request_notify"); + NEW(n); n->fn=fn; n->state=nst; LIST_INSERT_HEAD(&st->notify, n, entry);