aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-08-14 06:31:20 +0800
committerPeter Williams <peterw@src.gnome.org>2001-08-14 06:31:20 +0800
commit23aba87f9bbeb4fe8c54e499cce4059078bb3598 (patch)
tree324048b714e2ee6e3a13fd1ccc1170cb78ee2199 /camel
parent778f9780befd1f8f5514c64001c88d5b2e3292ba (diff)
downloadgsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar.gz
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar.bz2
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar.lz
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar.xz
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.tar.zst
gsoc2013-evolution-23aba87f9bbeb4fe8c54e499cce4059078bb3598.zip
Fix a leak.
2001-08-13 Peter Williams <peterw@ximian.com> * providers/imap/camel-imap-store.c (delete_folder): Fix a leak. * providers/imap/camel-imap-utils.c (imap_namespace_concat): Bleah, handle when namespace = NULL (can happen upon initial open of mailbox.) * providers/imap/camel-imap-command.c (imap_command_strdup_vprintf): Don't crash when %F'ing with an empty folder name and NULL namespace. svn path=/trunk/; revision=11971
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog10
-rw-r--r--camel/providers/imap/camel-imap-command.c10
-rw-r--r--camel/providers/imap/camel-imap-store.c4
-rw-r--r--camel/providers/imap/camel-imap-utils.c15
4 files changed, 34 insertions, 5 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 690e201336..3bc1ae3f07 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,13 @@
+2001-08-13 Peter Williams <peterw@ximian.com>
+
+ * providers/imap/camel-imap-store.c (delete_folder): Fix a leak.
+
+ * providers/imap/camel-imap-utils.c (imap_namespace_concat): Bleah,
+ handle when namespace = NULL (can happen upon initial open of mailbox.)
+
+ * providers/imap/camel-imap-command.c (imap_command_strdup_vprintf):
+ Don't crash when %F'ing with an empty folder name and NULL namespace.
+
2001-08-13 Jeffrey Stedfast <fejj@ximian.com>
* camel-store.c (camel_store_get_folder): We need to be ref'ing
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c
index 9dcc56cbf8..64095b320d 100644
--- a/camel/providers/imap/camel-imap-command.c
+++ b/camel/providers/imap/camel-imap-command.c
@@ -663,8 +663,14 @@ imap_command_strdup_vprintf (CamelImapStore *store, const char *fmt,
case 'F':
string = va_arg (ap, char *);
arglen = strlen (string);
- if (*p == 'F')
- arglen += strlen (store->namespace) + 1;
+ if (*p == 'F') {
+ if (store->namespace == NULL) {
+ if (*string != '\0') /*ok if foldername is "" */
+ g_warning ("trying to list folder \"%s\" but no namespace. Hope for the best", string);
+ arglen += 2;
+ } else
+ arglen += strlen (store->namespace) + 1;
+ }
g_ptr_array_add (args, string);
if (store->capabilities & IMAP_CAPABILITY_LITERALPLUS)
len += arglen + 15;
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index b4c01110ea..eb0c61e0f8 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -961,6 +961,10 @@ delete_folder (CamelStore *store, const char *folder_name, CamelException *ex)
response = camel_imap_command (imap_store, NULL, ex, "SELECT INBOX");
if (response) {
camel_imap_response_free (imap_store, response);
+
+ if (imap_store->current_folder)
+ camel_object_unref (CAMEL_OBJECT (imap_store->current_folder));
+ /* no need to actually create a CamelFolder for INBOX */
imap_store->current_folder = NULL;
} else
return;
diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c
index a449ea228d..df8ddc4f0e 100644
--- a/camel/providers/imap/camel-imap-utils.c
+++ b/camel/providers/imap/camel-imap-utils.c
@@ -773,11 +773,20 @@ imap_concat (CamelImapStore *imap_store, const char *prefix, const char *suffix)
char *
imap_namespace_concat (CamelImapStore *store, const char *name)
{
- if (!name || *name == '\0')
- return g_strdup (store->namespace);
-
+ if (!name || *name == '\0') {
+ if (store->namespace)
+ return g_strdup (store->namespace);
+ else
+ return g_strdup ("");
+ }
+
if (!g_strcasecmp (name, "INBOX"))
return g_strdup ("INBOX");
+ if (store->namespace == NULL) {
+ g_warning ("Trying to concat NULL namespace to \"%s\"!", name);
+ return g_strdup (name);
+ }
+
return imap_concat (store, store->namespace, name);
}