chiark / gitweb /
Call @xfree@ rather than @free@.
[fwd] / un.c
diff --git a/un.c b/un.c
index 8740b81a29d95d0e2478b6bd22d7c1e8c89a8a45..e120f95eefaff11fe3e9e9ac1f42ed02f1749bcf 100644 (file)
--- 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@ --- */