aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-11 06:17:43 +0800
committerDan Winship <danw@src.gnome.org>2000-07-11 06:17:43 +0800
commit52d48e02c187b07a5fa29bbeb5359052fcde4e55 (patch)
tree9a42cc2db4cea9f7e1bed1fb8f28a4037874bb97 /shell/e-shell.c
parent83fa610d1ed92914aaabf8da8510e4a5655e6bed (diff)
downloadgsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar.gz
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar.bz2
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar.lz
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar.xz
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.tar.zst
gsoc2013-evolution-52d48e02c187b07a5fa29bbeb5359052fcde4e55.zip
Translate a default_folder of "" into NULL (which can't be passed over
* e-shell.c (impl_Shell_user_select_folder): Translate a default_folder of "" into NULL (which can't be passed over CORBA). svn path=/trunk/; revision=4057
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 8a262b4a8a..cd73795ee5 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -237,6 +237,9 @@ impl_Shell_user_select_folder (PortableServer_Servant servant,
allowed_types[i] = corba_allowed_types->_buffer[i];
allowed_types[corba_allowed_types->_length] = NULL;
+ /* CORBA doesn't allow you to pass a NULL pointer. */
+ if (!*default_folder)
+ default_folder = NULL;
folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, title, default_folder, allowed_types);
listener_duplicate = CORBA_Object_duplicate (listener, ev);