diff options
Diffstat (limited to 'src/basic/hexdecoct.c')
-rw-r--r-- | src/basic/hexdecoct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/hexdecoct.c b/src/basic/hexdecoct.c index e080aaa175..fe7e4954ef 100644 --- a/src/basic/hexdecoct.c +++ b/src/basic/hexdecoct.c @@ -695,7 +695,7 @@ int unbase64mem(const char *p, size_t l, void **ret, size_t *ret_size) { break; if (a < 0) return a; - if (a == INT_MAX) /* Padding is not allowed at at the beginning of a 4ch block */ + if (a == INT_MAX) /* Padding is not allowed at the beginning of a 4ch block */ return -EINVAL; b = unbase64_next(&x, &l); |