mirror of
https://git.busybox.net/busybox
synced 2026-02-15 22:16:09 +00:00
libbb/yescrypt: code shrink
function old new delta yescrypt_r 1063 1048 -15 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
5e9b95ff40
commit
e3484095f9
1 changed files with 3 additions and 3 deletions
|
|
@ -126,8 +126,8 @@ static const uint8_t *decode64(
|
|||
*dstlen = dstpos;
|
||||
dbg_dec64("dec64: OK, dst[%d]", (int)dstpos);
|
||||
return src;
|
||||
fail:
|
||||
*dstlen = 0;
|
||||
fail:
|
||||
/* *dstlen = 0; - not needed, caller detects error by seeing NULL */
|
||||
return NULL;
|
||||
}
|
||||
#else
|
||||
|
|
@ -177,7 +177,7 @@ static const uint8_t *decode64(
|
|||
dbg_dec64("dec64: OK, dst[%d]", (int)dstpos);
|
||||
return src;
|
||||
}
|
||||
fail:
|
||||
fail:
|
||||
/* *dstlen = 0; - not needed, caller detects error by seeing NULL */
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue