Ulrich Mueller <ulm at gentoo.org> (tiny change)
authorGlenn Morris <rgm@gnu.org>
Wed, 30 May 2007 04:57:21 +0000 (04:57 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 30 May 2007 04:57:21 +0000 (04:57 +0000)
(XMakeAssoc): Use malloc rather than xmalloc.

oldXMenu/ChangeLog
oldXMenu/XMakeAssoc.c

index c92563d..9a7f01e 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-30  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
+
+       * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
+
 2007-02-27  Glenn Morris  <rgm@gnu.org>
 
        * Imakefile: Remove unused file with no explicit legal info.
index d443084..cf039c8 100644 (file)
@@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data)
        /* If we are here then the new entry should be inserted just */
        /* before the current value of "Entry". */
        /* Create a new XAssoc and load it with new provided data. */
-       new_entry = (XAssoc *) xmalloc(sizeof(XAssoc));
+       new_entry = (XAssoc *) malloc(sizeof(XAssoc));
        new_entry->display = dpy;
        new_entry->x_id = x_id;
        new_entry->data = data;