aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-08-22 03:22:12 +0800
committerIain Holmes <iain@src.gnome.org>2001-08-22 03:22:12 +0800
commitfa883ee48a330915cb35b6d81484675b2112714b (patch)
treee72c1b7f9c449a280c417d00682302d972252a60 /shell/e-shell-importer.c
parent5087ab29eee2abeea78be1dfdb987e2472d3dd1a (diff)
downloadgsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar.gz
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar.bz2
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar.lz
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar.xz
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.tar.zst
gsoc2013-evolution-fa883ee48a330915cb35b6d81484675b2112714b.zip
Don't print a NULL. Crashes on Solaris
svn path=/trunk/; revision=12349
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index 519222e87a..8ba73c433c 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -344,8 +344,6 @@ start_import (const char *folderpath,
real_iid = g_strdup (iid);
}
- g_print ("Importing with: %s\n", real_iid);
-
if (real_iid == NULL) {
char *message;
@@ -356,6 +354,8 @@ start_import (const char *folderpath,
return;
}
+ g_print ("Importing with: %s\n", real_iid);
+
icd = g_new (ImporterComponentData, 1);
icd->stop = FALSE;
icd->destroyed = FALSE;