summaryrefslogtreecommitdiffstats
path: root/gio/gfile.override
diff options
context:
space:
mode:
authorPaul Pogonyshev <pogonyshev@gmx.net>2009-04-13 20:28:24 +0000
committerPaul Pogonyshev <paulp@src.gnome.org>2009-04-13 20:28:24 +0000
commit9f5ce31f7f42dc8d3d6062cb17c87fb57b23817a (patch)
treec3daddbd3d6fe18c99dd0898fc864f2a2b0c53f0 /gio/gfile.override
parent37938b14a08f00b36aa575c2e9a74cf15d425ccf (diff)
downloadpygobject-9f5ce31f7f42dc8d3d6062cb17c87fb57b23817a.tar.gz
pygobject-9f5ce31f7f42dc8d3d6062cb17c87fb57b23817a.tar.xz
pygobject-9f5ce31f7f42dc8d3d6062cb17c87fb57b23817a.zip
Bug 578870 – memory leak in gio.File.copy_async
2009-04-13 Paul Pogonyshev <pogonyshev@gmx.net> Bug 578870 – memory leak in gio.File.copy_async * gio/gio.override (PyGIONotify): Add 'slaves' field. (pygio_notify_new_slave): New function. (pygio_notify_reference_callback): Recurse for slaves, if any. (pygio_notify_free): Likewise. * gio/gfile.override (file_progress_callback_marshal): Use new chaining functionality to avoid leaking the second PyGIONotify structure. Rename 'callback' as 'progress_callback' for clarity. svn path=/trunk/; revision=1060
Diffstat (limited to 'gio/gfile.override')
-rw-r--r--gio/gfile.override13
1 files changed, 6 insertions, 7 deletions
diff --git a/gio/gfile.override b/gio/gfile.override
index 4cbeb1c..99c6395 100644
--- a/gio/gfile.override
+++ b/gio/gfile.override
@@ -601,10 +601,12 @@ _wrap_g_file_copy_async(PyGObject *self,
int io_priority = G_PRIORITY_DEFAULT;
PyGObject *pycancellable = NULL;
GCancellable *cancellable;
- GFileProgressCallback callback = NULL;
+ GFileProgressCallback progress_callback = NULL;
+ /* After the creation, referencing/freeing will automatically be
+ * done on the master and the slave. */
notify = pygio_notify_new();
- progress_notify = pygio_notify_new();
+ progress_notify = pygio_notify_new_slave(notify);
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
"O!O|OiOOOO:File.copy_async",
@@ -627,7 +629,7 @@ _wrap_g_file_copy_async(PyGObject *self,
goto error;
if (pygio_notify_using_optional_callback(progress_notify)) {
- callback = (GFileProgressCallback)file_progress_callback_marshal;
+ progress_callback = (GFileProgressCallback) file_progress_callback_marshal;
if (!pygio_notify_callback_is_valid_full(progress_notify, "progress_callback"))
goto error;
}
@@ -636,15 +638,13 @@ _wrap_g_file_copy_async(PyGObject *self,
goto error;
pygio_notify_reference_callback(notify);
- pygio_notify_reference_callback(progress_notify);
- /* FIXME: 'progress_notify' is not properly freed up as far as I see. */
g_file_copy_async(G_FILE(self->obj),
G_FILE(destination->obj),
flags,
io_priority,
cancellable,
- callback,
+ progress_callback,
progress_notify,
(GAsyncReadyCallback)async_result_callback_marshal,
notify);
@@ -654,7 +654,6 @@ _wrap_g_file_copy_async(PyGObject *self,
error:
pygio_notify_free(notify);
- pygio_notify_free(progress_notify);
return NULL;
}
%%