X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/bc241e9852f14199c850f88e727abb39acdf90c6..00e3c0f1bbe99682debd4e34d3d3bd950f8c30cb:/un.c diff --git a/un.c b/un.c index 8740b81..e120f95 100644 --- a/un.c +++ b/un.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: un.c,v 1.4 2000/08/01 17:59:56 mdw Exp $ + * $Id: un.c,v 1.5 2002/02/22 23:43:32 mdw Exp $ * * Protocol specific definitions for Unix-domain sockets * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: un.c,v $ + * Revision 1.5 2002/02/22 23:43:32 mdw + * Call @xfree@ rather than @free@. + * * Revision 1.4 2000/08/01 17:59:56 mdw * Switch over to using `size_t' for socket address lengths. * @@ -115,7 +118,7 @@ static addr *un_read(scanner *sc, unsigned type) static void un_destroy(addr *a) { un_addr *ua = (un_addr *)a; - free(ua); + xfree(ua); } /* --- @print@ --- */