amd64-{51-30k,64-24k} impls should work now

This commit is contained in:
cathugger 2017-09-27 15:41:59 +03:00
parent 59f318aa64
commit 966cf38205
16 changed files with 135 additions and 66 deletions

View file

@ -59,7 +59,8 @@ size_t base32_from(u8 *dst,u8 *dmask,const char *src)
if (!src[j]) {
if (k != (size_t)-1)
dst[k] &= cmask;
*dmask = cmask;
if (dmask)
*dmask = cmask;
return k + 1;
}
l = i%8;