From: Andrea Zagli Date: Sun, 21 Feb 2016 15:35:32 +0000 (+0100) Subject: Removed warning in GdaEx::get_blob. X-Git-Tag: v0.7.0~1^2~11 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=b072b195d12e5c1bfe85804858978b5073720b0a;p=libgdaex Removed warning in GdaEx::get_blob. --- diff --git a/src/gdaex.c b/src/gdaex.c index 63bcc21..a4f9746 100644 --- a/src/gdaex.c +++ b/src/gdaex.c @@ -34,6 +34,7 @@ #include #include +#include #include "gdaex.h" @@ -3572,14 +3573,15 @@ const gchar { blob = gda_value_get_blob (value); - filename_orig = g_strdup (""); + filename_orig = g_strdup ("jdoe"); error = NULL; value = gda_data_model_get_value_at (dm, gda_data_model_get_column_index (dm, filename_field_name), 0, &error); - if (!gda_value_is_null (value)) + if (value != NULL && !gda_value_is_null (value)) { path = g_value_get_string (value); + g_free (filename_orig); filename_orig = g_path_get_basename (path); }