Loading crypto/bn/bn_intern.c +2 −1 Original line number Diff line number Diff line Loading @@ -167,6 +167,7 @@ int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size) return 0; memset(out, 0, sizeof(*out) * size); if (in->d != NULL) memcpy(out, in->d, sizeof(*out) * in->top); return 1; } Loading Loading
crypto/bn/bn_intern.c +2 −1 Original line number Diff line number Diff line Loading @@ -167,6 +167,7 @@ int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size) return 0; memset(out, 0, sizeof(*out) * size); if (in->d != NULL) memcpy(out, in->d, sizeof(*out) * in->top); return 1; } Loading