diff options
author | B. Stack <bgstack15@gmail.com> | 2022-11-22 08:54:34 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-11-22 08:54:34 -0500 |
commit | a034cfca98d4408b175938740628a54f57eb7614 (patch) | |
tree | 501fd78c6276c0be8be8d2c671a58dd0598060b5 /Bugs.txt | |
parent | add upstream 11.27 (diff) | |
download | FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.gz FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.bz2 FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.zip |
add upstream 11.2811.28
Diffstat (limited to 'Bugs.txt')
-rw-r--r-- | Bugs.txt | 25 |
1 files changed, 6 insertions, 19 deletions
@@ -5,7 +5,7 @@ the ones mentioned below. The remaining issues that are yet to be fixed are list ---------------- -| libcurl 7.84| +| libcurl 7.86| ---------------- __________________________________________________________________________________________________________ /lib/ftp.c @@ -46,9 +46,9 @@ https://github.com/curl/curl/issues/4342 __________________________________________________________________________________________________________ --------------------------- -| libssh2 1.9.0-20201014 | --------------------------- +----------------------------- +| libssh2 master 2022-11-11 | +----------------------------- __________________________________________________________________________________________________________ src/session.c memory leak: https://github.com/libssh2/libssh2/issues/28 @@ -58,27 +58,14 @@ memory leak: https://github.com/libssh2/libssh2/issues/28 __________________________________________________________________________________________________________ move the following constants from src/sftp.h to include/libssh2_sftp.h: + #define MAX_SFTP_OUTGOING_SIZE 30000 #define MAX_SFTP_READ_SIZE 30000 - -__________________________________________________________________________________________________________ -src/userauth.c -buffer overflow: https://github.com/libssh2/libssh2/pull/693 - --if (banner_len >= session->userauth_list_data_len - 5) { -+if (banner_len > session->userauth_list_data_len - 5) { - --session->userauth_banner = LIBSSH2_ALLOC(session, banner_len); -+session->userauth_banner = LIBSSH2_ALLOC(session, banner_len + 1); - --memmove(session->userauth_banner, session->userauth_list_data + 5, -+memcpy(session->userauth_banner, session->userauth_list_data + 5, - __________________________________________________________________________________________________________ ------------------- -| wxWidgets 3.1.7 | +| wxWidgets 3.2.1 | ------------------- __________________________________________________________________________________________________________ /include/wx/features.h |