]> granicus.if.org Git - mutt/commitdiff
Another qp fix.
authorThomas Roessler <roessler@does-not-exist.org>
Sun, 16 Jul 2000 08:19:15 +0000 (08:19 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sun, 16 Jul 2000 08:19:15 +0000 (08:19 +0000)
handler.c

index feffb272d2ebb23aa269f5af624abc9b98c72894..6e8e2e8d176d35fa1cedccc97b679902b2eb3431 100644 (file)
--- a/handler.c
+++ b/handler.c
@@ -183,7 +183,7 @@ static void qp_decode_line (char *dest, char *src, size_t *l)
   if (*src)
   {
     s = src + strlen(src) - 1;
-    while (s != src && ISSPACE(*s))
+    while (s >= src && ISSPACE(*s))
       s--;
     *(++s) = '\0';
   }