Fix a number of free/xfree bugs.
[u/mdw/catacomb] / lmem.c
diff --git a/lmem.c b/lmem.c
index 1d4ae87..ed79630 100644 (file)
--- a/lmem.c
+++ b/lmem.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: lmem.c,v 1.6 2004/04/08 01:36:15 mdw Exp $
+ * $Id$
  *
  * Locked memory allocation (Unix-specific)
  *
@@ -310,7 +310,7 @@ void l_destroy(lmem *lm)
   if (lm->f & LF_LOCKED)
     munmap(lm->p, lm->sz);
   else
-    free(lm->p);
+    free(lm->p); /*sic*/
 }
 
 /* --- @l_report@ --- *