summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 16884d3..ca7bac6 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -60,6 +60,13 @@ newstringobject(str)
return (object *) op;
}
+void
+stringdealloc(op)
+ object *op;
+{
+ DEL(op);
+}
+
unsigned int
getstringsize(op)
register object *op;
@@ -305,7 +312,7 @@ typeobject Stringtype = {
"string",
sizeof(stringobject),
sizeof(char),
- free, /*tp_dealloc*/
+ stringdealloc, /*tp_dealloc*/
stringprint, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/