From b072b195d12e5c1bfe85804858978b5073720b0a Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 21 Feb 2016 16:35:32 +0100 Subject: [PATCH] Removed warning in GdaEx::get_blob. --- src/gdaex.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } -- 2.49.0