Ulrich Mueller <ulm at gentoo.org> (tiny change)
(XMakeAssoc): Use malloc rather than xmalloc.
This commit is contained in:
parent
c07318f44a
commit
bdf41b9660
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue