aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-stream-b64.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>2000-02-22 21:53:26 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-02-22 21:53:26 +0800
commit460d479d8b7f3b1ad42f7f00813cdca629e52018 (patch)
tree57b1a50f612e0f510909e7139399d7792bd40fe7 /camel/camel-stream-b64.h
parentf65a2d78c6cb123fd94b173aa4e877f22d314d4c (diff)
downloadgsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar.gz
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar.bz2
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar.lz
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar.xz
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.tar.zst
gsoc2013-evolution-460d479d8b7f3b1ad42f7f00813cdca629e52018.zip
don't read the char if we reached the length of the output buffer. Hours
2000-02-22 bertrand <Bertrand.Guiheneuf@aful.org> * camel-stream-b64.c (read_decode__static): don't read the char if we reached the length of the output buffer. Hours lost on this %$!@# bug : 3.5 svn path=/trunk/; revision=1903
Diffstat (limited to 'camel/camel-stream-b64.h')
-rw-r--r--camel/camel-stream-b64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-stream-b64.h b/camel/camel-stream-b64.h
index 2b99a0e3d9..0577d03f3f 100644
--- a/camel/camel-stream-b64.h
+++ b/camel/camel-stream-b64.h
@@ -54,8 +54,8 @@ typedef enum {
/* private type */
typedef struct {
- gchar state;
- gchar keep;
+ guchar state;
+ guchar keep;
} CamelStream64DecodeStatus;