Fix another error path
This commit is contained in:
parent
1df7021276
commit
f8a8395114
|
@ -335,7 +335,9 @@ static void
|
||||||
dictzip_input_stream_finalize (GObject *gobject)
|
dictzip_input_stream_finalize (GObject *gobject)
|
||||||
{
|
{
|
||||||
DictzipInputStreamPrivate *priv = DICTZIP_INPUT_STREAM (gobject)->priv;
|
DictzipInputStreamPrivate *priv = DICTZIP_INPUT_STREAM (gobject)->priv;
|
||||||
g_object_unref (priv->file_info);
|
|
||||||
|
if (priv->file_info)
|
||||||
|
g_object_unref (priv->file_info);
|
||||||
g_free (priv->chunks);
|
g_free (priv->chunks);
|
||||||
g_free (priv->input_buffer);
|
g_free (priv->input_buffer);
|
||||||
inflateEnd (&priv->zs);
|
inflateEnd (&priv->zs);
|
||||||
|
|
Loading…
Reference in New Issue