[gthumb/ext: 37/79] fixed crash when adding files to catalogs
- From: Paolo Bacchilega <paobac src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gthumb/ext: 37/79] fixed crash when adding files to catalogs
- Date: Sun, 2 Aug 2009 20:28:12 +0000 (UTC)
commit 55cf40f590759d1b051d1f04a3f4933eea488d73
Author: Paolo Bacchilega <paobac src gnome org>
Date: Thu Jul 9 17:50:24 2009 +0200
fixed crash when adding files to catalogs
extensions/catalogs/dlg-add-to-catalog.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/extensions/catalogs/dlg-add-to-catalog.c b/extensions/catalogs/dlg-add-to-catalog.c
index 25d8068..c8f437c 100644
--- a/extensions/catalogs/dlg-add-to-catalog.c
+++ b/extensions/catalogs/dlg-add-to-catalog.c
@@ -37,7 +37,6 @@ typedef struct {
GList *files;
GthFileData *selected_catalog;
GthFileSource *file_source;
- GFile *gio_file;
GthCatalog *catalog;
char *buffer;
gsize length;
@@ -50,7 +49,6 @@ destroy_cb (GtkWidget *widget,
{
g_free (data->buffer);
_g_object_unref (data->catalog);
- _g_object_unref (data->gio_file);
_g_object_list_unref (data->files);
_g_object_unref (data->selected_catalog);
g_object_unref (data->builder);
@@ -106,6 +104,7 @@ catalog_ready_cb (GObject *catalog,
{
DialogData *data = user_data;
GList *scan;
+ GFile *gio_file;
if (error != NULL) {
_gtk_error_dialog_from_gerror_show (GTK_WINDOW (data->dialog), _("Could not add the files to the catalog"), &error);
@@ -120,13 +119,16 @@ catalog_ready_cb (GObject *catalog,
}
data->buffer = gth_catalog_to_data (data->catalog, &data->length);
- g_write_file_async (data->gio_file,
+ gio_file = gth_catalog_file_to_gio_file (data->selected_catalog->file);
+ g_write_file_async (gio_file,
data->buffer,
data->length,
G_PRIORITY_DEFAULT,
NULL,
catalog_save_done_cb,
data);
+
+ g_object_unref (gio_file);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]