aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-ft-handler.c
diff options
context:
space:
mode:
authorFrédéric Péters <fpeters@0d.be>2009-06-17 15:57:02 +0800
committerFrédéric Péters <fpeters@0d.be>2009-06-17 16:15:52 +0800
commit0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3 (patch)
treeb99f956b9be07f5578a7f0ea62d0c80fa5b7a64f /libempathy/empathy-ft-handler.c
parente4aa4b036f8f7663b9a0b9362617bce544ac1a3e (diff)
downloadgsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar.gz
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar.bz2
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar.lz
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar.xz
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.tar.zst
gsoc2013-empathy-0f4c81cabf14b37cebef3f4c22f9bdc3ce5238b3.zip
Refuse sending empty or special files (directories, char/block devices, etc.)
(GNOME bug 563678)
Diffstat (limited to 'libempathy/empathy-ft-handler.c')
-rw-r--r--libempathy/empathy-ft-handler.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/libempathy/empathy-ft-handler.c b/libempathy/empathy-ft-handler.c
index ba81fd4c7..d24467b24 100644
--- a/libempathy/empathy-ft-handler.c
+++ b/libempathy/empathy-ft-handler.c
@@ -1149,9 +1149,25 @@ ft_handler_gfile_ready_cb (GObject *source,
if (error != NULL)
goto out;
+ if (g_file_info_get_file_type (info) != G_FILE_TYPE_REGULAR)
+ {
+ error = g_error_new_literal (EMPATHY_FT_ERROR_QUARK,
+ EMPATHY_FT_ERROR_INVALID_SOURCE_FILE,
+ _("The selected file is not a regular file"));
+ goto out;
+ }
+
+ priv->total_bytes = g_file_info_get_size (info);
+ if (priv->total_bytes == 0)
+ {
+ error = g_error_new_literal (EMPATHY_FT_ERROR_QUARK,
+ EMPATHY_FT_ERROR_EMPTY_SOURCE_FILE,
+ _("The selected file is empty"));
+ goto out;
+ }
+
priv->content_type = g_strdup (g_file_info_get_content_type (info));
priv->filename = g_strdup (g_file_info_get_display_name (info));
- priv->total_bytes = g_file_info_get_size (info);
g_file_info_get_modification_time (info, &mtime);
priv->mtime = mtime.tv_sec;
priv->transferred_bytes = 0;
@@ -1303,6 +1319,7 @@ empathy_ft_handler_new_outgoing (EmpathyContact *contact,
G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME ","
G_FILE_ATTRIBUTE_STANDARD_SIZE ","
G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE ","
+ G_FILE_ATTRIBUTE_STANDARD_TYPE ","
G_FILE_ATTRIBUTE_TIME_MODIFIED,
G_FILE_QUERY_INFO_NONE, G_PRIORITY_DEFAULT,
NULL, (GAsyncReadyCallback) ft_handler_gfile_ready_cb, data);