Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
bugfix: GPF on connect to some SSL-explicit FTP-sites (see original o…
Browse files Browse the repository at this point in the history
…penSSL source)
  • Loading branch information
yjh-styx committed Aug 26, 2022
1 parent 7c91fce commit 57db6d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/openssl/crypto/bn/bn_mont.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static int BN_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont)

/* clear the top words of T */
i = max - r->top;
if (i)
if (i > 0)
memset(&rp[r->top], 0, sizeof(*rp) * i);

r->top = max;
Expand Down
2 changes: 1 addition & 1 deletion src/NetBox/plugin_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
#define NETBOX_VERSION_MAJOR 2
#define NETBOX_VERSION_MINOR 4
#define NETBOX_VERSION_PATCH 5
#define NETBOX_VERSION_BUILD 544
#define NETBOX_VERSION_BUILD 545

0 comments on commit 57db6d2

Please sign in to comment.