summaryrefslogtreecommitdiffstats
path: root/libdimension/object.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-05-28 18:16:04 -0600
committerTavian Barnes <tavianator@gmail.com>2011-05-28 18:16:04 -0600
commit4479d25609e26253c4e5fcfc78b093c0b45cefb8 (patch)
tree4f931d4d1d78e4915f99134e563a9d14faba7a33 /libdimension/object.c
parentefd3c1c2b42ffda0c8f7e5cd9b03fba07eead1ea (diff)
downloaddimension-4479d25609e26253c4e5fcfc78b093c0b45cefb8.tar.xz
Don't allocate reference counts on the heap.
Diffstat (limited to 'libdimension/object.c')
-rw-r--r--libdimension/object.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libdimension/object.c b/libdimension/object.c
index f73ea02..fecfdbe 100644
--- a/libdimension/object.c
+++ b/libdimension/object.c
@@ -39,7 +39,7 @@ dmnsn_new_object(void)
object->inside_fn = NULL;
object->initialize_fn = NULL;
object->free_fn = NULL;
- object->refcount = dmnsn_new_refcount();
+ object->refcount = 0;
return object;
}
@@ -48,7 +48,6 @@ void
dmnsn_delete_object(dmnsn_object *object)
{
if (object && DMNSN_DECREF(object)) {
- dmnsn_delete_refcount(object->refcount);
DMNSN_ARRAY_FOREACH (dmnsn_object **, child, object->children) {
dmnsn_delete_object(*child);
}