Changeset 7dcef03 for variable.c
- Timestamp:
- Dec 25, 2013, 11:33:37 AM (11 years ago)
- Branches:
- master, release-1.10
- Children:
- 8f95fc4, c53f5e8, 1bd5aa9
- Parents:
- d779a1a
- git-author:
- Anders Kaseorg <andersk@mit.edu> (12/25/13 11:18:38)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (12/25/13 11:33:37)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
variable.c
r9d4dfdc r7dcef03 627 627 628 628 static owl_variable *owl_variable_newvar(int type, const char *name, const char *summary, const char *description, const char *validsettings) { 629 owl_variable *var = g_ new0(owl_variable, 1);629 owl_variable *var = g_slice_new0(owl_variable); 630 630 var->type = type; 631 631 var->name = g_strdup(name); … … 793 793 g_closure_unref(v->set_fromstring_fn); 794 794 795 g_ free(v);795 g_slice_free(owl_variable, v); 796 796 } 797 797
Note: See TracChangeset
for help on using the changeset viewer.