- 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
-
context.c
rf271129 r7dcef03 10 10 if (!(mode & OWL_CTX_MODE_BITS)) 11 11 mode |= OWL_CTX_INTERACTIVE; 12 c = g_ new0(owl_context, 1);12 c = g_slice_new0(owl_context); 13 13 c->mode = mode; 14 14 c->data = data; … … 71 71 if (ctx->delete_cb) 72 72 ctx->delete_cb(ctx); 73 g_ free(ctx);73 g_slice_free(owl_context, ctx); 74 74 }
Note: See TracChangeset
for help on using the changeset viewer.