From: Glenn Morris Date: Wed, 30 May 2007 04:58:38 +0000 (+0000) Subject: Ulrich Mueller (tiny change) X-Git-Tag: emacs-pretest-23.0.90~12534 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bdf41b96609f8ff8c49cd2cb73a740363a6a9cd8;p=emacs.git Ulrich Mueller (tiny change) (XMakeAssoc): Use malloc rather than xmalloc. --- diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog index c92563d3bc2..9a7f01ed901 100644 --- a/oldXMenu/ChangeLog +++ b/oldXMenu/ChangeLog @@ -1,3 +1,7 @@ +2007-05-30 Ulrich Mueller (tiny change) + + * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc. + 2007-02-27 Glenn Morris * Imakefile: Remove unused file with no explicit legal info. diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c index d443084ac13..cf039c8f3c1 100644 --- a/oldXMenu/XMakeAssoc.c +++ b/oldXMenu/XMakeAssoc.c @@ -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;