diff options
author | Jerald Fitzjerald <jfj@freemail.gr> | 2007-05-30 05:39:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-30 15:03:50 -0700 |
commit | 86d14e1b1d1063fc943c71edc8b05e1ce32c1602 (patch) | |
tree | b441e296412b6bb41806b5392fc78e6df288bb5a | |
parent | fix signed range problems with hex conversions (diff) | |
download | tgif-86d14e1b1d1063fc943c71edc8b05e1ce32c1602.tar.xz |
decode_85(): fix missing return.
When the function detected an invalid base85 sequence, it issued
an error message but forgot to return error status at that point
and kept going.
Signed-off-by: Jerald Fitzjerald <jfj@freemail.gr>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | base85.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ int decode_85(char *dst, const char *buffer, int len) */ if (0x03030303 < acc || 0xffffffff - de < (acc *= 85)) - error("invalid base85 sequence %.5s", buffer-5); + return error("invalid base85 sequence %.5s", buffer-5); acc += de; say1(" %08x", acc); |