]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - pw/bitmap.c
Simplify copying of group members by using memcpy
[pw-darwin.git] / pw / bitmap.c
index bb55c5b6fcf34f658828836d7451085edc07d5b3..8e96bff40ba731c791ae427d032064071b0bedad 100644 (file)
@@ -26,7 +26,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id$";
+  "$FreeBSD$";
 #endif /* not lint */
 
 #include <stdlib.h>
@@ -50,8 +50,7 @@ bm_alloc(int size)
 void
 bm_dealloc(struct bitmap * bm)
 {
-       if (bm->map)
-               free(bm->map);
+       free(bm->map);
 }
 
 static void