diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2011-10-13 07:55:46 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-10-13 07:55:46 -0700 |
commit | 81d40c920807279ccc0dae0aca46c8291755c66d (patch) | |
tree | 8770bfd02923e8b930aec16401eeb16f3fb6fbe4 /lwlib/lwlib-Xm.c | |
parent | e7e2364b7ba0293fb4b6f8ae3e38127e84dafe8b (diff) | |
download | emacs-81d40c920807279ccc0dae0aca46c8291755c66d.tar.gz emacs-81d40c920807279ccc0dae0aca46c8291755c66d.tar.bz2 emacs-81d40c920807279ccc0dae0aca46c8291755c66d.zip |
Use xfree, not free, to avoid crash with --enable-checking=xmallocoverrun.
Diffstat (limited to 'lwlib/lwlib-Xm.c')
-rw-r--r-- | lwlib/lwlib-Xm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c index 2b7677a02f5..058e2e779c7 100644 --- a/lwlib/lwlib-Xm.c +++ b/lwlib/lwlib-Xm.c @@ -186,9 +186,9 @@ make_destroyed_instance (char* name, static void free_destroyed_instance (destroyed_instance* instance) { - free (instance->name); - free (instance->type); - free (instance); + xfree (instance->name); + xfree (instance->type); + xfree (instance); } /* motif utility functions */ @@ -928,13 +928,13 @@ xm_update_one_value (widget_instance* instance, } else if (class == xmTextWidgetClass) { - free (val->value); + xfree (val->value); val->value = XmTextGetString (widget); val->edited = True; } else if (class == xmTextFieldWidgetClass) { - free (val->value); + xfree (val->value); val->value = XmTextFieldGetString (widget); val->edited = True; } @@ -959,7 +959,7 @@ xm_update_one_value (widget_instance* instance, XtVaGetValues (toggle, XmNset, &set, NULL); if (set) { - free (val->value); + xfree (val->value); val->value = safe_strdup (XtName (toggle)); } } |