wmc: xmalloc shouldn't initialize to zero, do that explicitly where needed.
diff --git a/tools/wmc/utils.c b/tools/wmc/utils.c
index 6b7769e..c91902d 100644
--- a/tools/wmc/utils.c
+++ b/tools/wmc/utils.c
@@ -148,12 +148,7 @@
     {
 	error("Virtual memory exhausted.\n");
     }
-    /*
-     * We set it to 0.
-     * This is *paramount* because we depend on it
-     * just about everywhere in the rest of the code.
-     */
-    memset(res, 0, size);
+    memset(res, 0x55, size);
     return res;
 }