aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@redhat.com>2003-12-01 10:10:49 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-12-01 10:10:49 +0800
commitfae86d46d1328fad31ebf9b6b7840179d96b88a9 (patch)
treececea36358e0d06794701146892fb36ea8e1cee5 /camel/providers/imap/camel-imap-store.c
parenta97ac9fb1eca20c4871e588788d7098017736c2d (diff)
downloadgsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar.gz
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar.bz2
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar.lz
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar.xz
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.tar.zst
gsoc2013-evolution-fae86d46d1328fad31ebf9b6b7840179d96b88a9.zip
Enable GUI option for 'custom command' connection. Don't g_free strings in
2003-11-28 David Woodhouse <dwmw2@redhat.com> * providers/imap/camel-imap-provider.c: Enable GUI option for 'custom command' connection. * providers/imap/camel-imap-store.c: Don't g_free strings in .rodata. It's considered rude. svn path=/trunk/; revision=23510
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-rw-r--r--camel/providers/imap/camel-imap-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 46c30ab7a0..07152eef87 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -774,7 +774,7 @@ connect_to_server_process (CamelService *service, const char *cmd, CamelExceptio
/* Now do %h, %u, etc. substitution in cmd */
buf = cmd_copy = g_strdup(cmd);
- full_cmd = "";
+ full_cmd = g_strdup("");
for(;;) {
char *pc;