]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Correzione nell'export a csv.
authorAndrea Zagli <azagli@libero.it>
Sun, 3 Apr 2011 08:29:04 +0000 (10:29 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 3 Apr 2011 08:29:04 +0000 (10:29 +0200)
g_output_stream_write_all vuole il numero di byte da scrivere e
non il numero di caratteri.

src/utils.c

index db5e53bf4da5994b6b6dc7f69308374e6fa61903..043af3b74880b67a0cb59753760aa46157d61e02 100644 (file)
@@ -20,6 +20,7 @@
        #include <config.h>
 #endif
 
+#include <string.h>
 #include <locale.h>
 
 #include <errno.h>
@@ -97,7 +98,7 @@ solipa_gtktreeiter_export_to_csv (GtkTreeModel *model, GtkTreeIter iter,
 
                        error = NULL;
                        if (!g_output_stream_write_all (ostream,
-                                                       row, g_utf8_strlen (row, -1), NULL, NULL, &error))
+                                                       row, strlen (row), NULL, NULL, &error))
                                {
                                        g_warning ("Errore nella scrittura del file di output: %s",
                                                   error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
@@ -223,7 +224,7 @@ solipa_gtktreemodel_to_csv (GtkTreeModel *model, const gchar *filename,
 
                                        error = NULL;
                                        if (!g_output_stream_write_all (G_OUTPUT_STREAM (ostream),
-                                                                       row, g_utf8_strlen (row, -1), NULL, NULL, &error))
+                                                                       row, strlen (row), NULL, NULL, &error))
                                                {
                                                        g_warning ("Errore nella scrittura del file di output: %s",
                                                                   error != NULL && error->message != NULL ? error->message : "nessun dettaglio");