aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-04-16 02:37:36 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-04-16 02:37:36 +0000
commita7c2a151510abcf3bc013227bcced50c745ca068 (patch)
tree7e9ea0c4e8a2b935c887a6a8982e0d0565d39095 /externals/grill/py/source
parent53cc9384d554e1e8a988471c1ee887c48fbb701f (diff)
""
svn path=/trunk/; revision=564
Diffstat (limited to 'externals/grill/py/source')
-rw-r--r--externals/grill/py/source/bound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/py/source/bound.cpp b/externals/grill/py/source/bound.cpp
index c2d0a2cc..58250830 100644
--- a/externals/grill/py/source/bound.cpp
+++ b/externals/grill/py/source/bound.cpp
@@ -104,7 +104,7 @@ PyObject *pyext::pyext_unbind(PyObject *,PyObject *args)
// do unbind
if(px) {
pd_unbind(&px->obj.ob_pd,recv);
- object_free(px->obj);
+ object_free(&px->obj);
Py_DECREF(self);
if(PyMethod_Check(meth)) Py_DECREF(meth);
@@ -133,7 +133,7 @@ V pyext::ClearBinding()
if(PyMethod_Check(px->func)) Py_DECREF(px->func);
pd_unbind(&px->obj.ob_pd,px->name);
- object_free(px->obj);
+ object_free(&px->obj);
}
else pp = px;
px = pn;