aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-24 16:02:10 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-24 16:02:10 +0800
commitaae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3 (patch)
tree84e755317dae2f70530282f26aa39716283ffa72 /camel/camel-mime-utils.c
parent308ab4258cb185d0ec546c1e6d29af26352a626f (diff)
downloadgsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar.gz
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar.bz2
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar.lz
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar.xz
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.tar.zst
gsoc2013-evolution-aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3.zip
fix/rearrange logic. It was using the wrong working pointer.
2004-05-24 Not Zed <NotZed@Ximian.com> * camel-mime-utils.c (camel_header_newsgroups_decode): fix/rearrange logic. It was using the wrong working pointer. svn path=/trunk/; revision=26059
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 43d680012e..35766e0b48 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -2855,26 +2855,24 @@ camel_header_newsgroups_decode(const char *in)
const char *inptr = in;
register char c;
struct _camel_header_newsgroup *head, *last, *ng;
+ const char *start;
head = NULL;
last = (struct _camel_header_newsgroup *)&head;
- c = *in;
- while (c) {
- const char *start;
-
+ do {
header_decode_lwsp(&inptr);
- start = in;
- while ((c = *in++) && !camel_mime_is_lwsp(c) && c != ',')
+ start = inptr;
+ while ((c = *inptr++) && !camel_mime_is_lwsp(c) && c != ',')
;
- if (start != in) {
+ if (start != inptr-1) {
ng = g_malloc(sizeof(*ng));
- ng->newsgroup = g_strndup(start, in-start);
+ ng->newsgroup = g_strndup(start, inptr-start-1);
ng->next = NULL;
last->next = ng;
last = ng;
}
- }
+ } while (c);
return head;
}