summaryrefslogtreecommitdiffstats
path: root/Modules/zlibmodule.c
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>1999-01-29 21:49:34 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>1999-01-29 21:49:34 (GMT)
commit1c7aaa2d730813793d8a138d170360b0d420576a (patch)
treee75bfce20958b47c3cb9b8483e6fff1264654ac9 /Modules/zlibmodule.c
parent9b0dc53d895d9f3b9036ca6f49529c62bf3a765e (diff)
downloadcpython-1c7aaa2d730813793d8a138d170360b0d420576a.zip
cpython-1c7aaa2d730813793d8a138d170360b0d420576a.tar.gz
cpython-1c7aaa2d730813793d8a138d170360b0d420576a.tar.bz2
Added missing DECREF's in the error branches when creating a compressor or
decompressor object. This required adding a flag to the struct which is true if initialisation was completed; on object destruction, deflateEnd() is only called if the flag is true.
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r--Modules/zlibmodule.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c
index dd5804c..81a9cd4 100644
--- a/Modules/zlibmodule.c
+++ b/Modules/zlibmodule.c
@@ -30,6 +30,7 @@ typedef struct
{
PyObject_HEAD
z_stream zst;
+ int is_initialised;
} compobject;
static char compressobj__doc__[] =
@@ -50,6 +51,7 @@ newcompobject(type)
self = PyObject_NEW(compobject, type);
if (self == NULL)
return NULL;
+ self->is_initialised = 0;
return self;
}
@@ -286,12 +288,15 @@ PyZlib_compressobj(selfptr, args)
switch(err)
{
case (Z_OK):
+ self->is_initialised = 1;
return (PyObject*)self;
case (Z_MEM_ERROR):
+ Py_DECREF(self);
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for compression object");
return NULL;
case(Z_STREAM_ERROR):
+ Py_DECREF(self);
PyErr_SetString(PyExc_ValueError,
"Invalid initialization option");
return NULL;
@@ -305,6 +310,7 @@ PyZlib_compressobj(selfptr, args)
PyErr_Format(ZlibError,
"Error %i while creating compression object: %.200s",
err, self->zst.msg);
+ Py_DECREF(self);
return NULL;
}
}
@@ -329,12 +335,15 @@ PyZlib_decompressobj(selfptr, args)
switch(err)
{
case (Z_OK):
+ self->is_initialised = 1;
return (PyObject*)self;
case(Z_STREAM_ERROR):
+ Py_DECREF(self);
PyErr_SetString(PyExc_ValueError,
"Invalid initialization option");
return NULL;
case (Z_MEM_ERROR):
+ Py_DECREF(self);
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for decompression object");
return NULL;
@@ -348,6 +357,7 @@ PyZlib_decompressobj(selfptr, args)
PyErr_Format(ZlibError,
"Error %i while creating decompression object: %.200s",
err, self->zst.msg);
+ Py_DECREF(self);
return NULL;
}
}
@@ -357,7 +367,8 @@ static void
Comp_dealloc(self)
compobject *self;
{
- deflateEnd(&self->zst);
+ if (self->is_initialised)
+ deflateEnd(&self->zst);
PyMem_DEL(self);
}