diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-24 01:17:31 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-24 01:17:31 +0800 |
commit | ac902006634443021aed5bc217af74911bde8e65 (patch) | |
tree | 0583092b2afe9665b53549237e87163654ea8ce1 /camel/camel-mime-utils.c | |
parent | 4c1c537e19a6397fc4b3418e5db6eea4239ab741 (diff) | |
download | gsoc2013-evolution-ac902006634443021aed5bc217af74911bde8e65.tar.gz gsoc2013-evolution-ac902006634443021aed5bc217af74911bde8e65.tar.zst gsoc2013-evolution-ac902006634443021aed5bc217af74911bde8e65.zip |
fix some obvious minor bugs noted by -Wall.
* camel-mime-utils.c (header_to_decode, header_mime_decode): fix
some obvious minor bugs noted by -Wall.
svn path=/trunk/; revision=2563
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 25970e58a0..f9e2389fee 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -1491,7 +1491,7 @@ header_to_decode(const char *in) #warning header_to_decode needs to return some structure if (in == NULL) - return NULL; + return; do { last = inptr; @@ -1523,7 +1523,7 @@ header_mime_decode(const char *in) #warning header_mime_decode needs to return the version if (in == NULL) - return NULL; + return; header_decode_lwsp(&inptr); if (isdigit(*inptr)) { |