summaryrefslogtreecommitdiff
path: root/Bugs.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Bugs.txt')
-rw-r--r--[-rwxr-xr-x]Bugs.txt35
1 files changed, 23 insertions, 12 deletions
diff --git a/Bugs.txt b/Bugs.txt
index 551614a0..da0fe9b4 100755..100644
--- a/Bugs.txt
+++ b/Bugs.txt
@@ -1,9 +1,12 @@
-When manually compiling FreeFileSync, you should also fix the following bugs in its dependent libraries:
+When manually compiling FreeFileSync, you should also fix the following bugs in its dependent libraries.
+FreeFileSync generally uses the latest library versions and works with upstream to get the bugs fixed
+that affect FreeFileSync. Therefore it is not recommended to compile against older library versions than
+the ones mentioned below. The remaining issues that are yet to be fixed are listed in the following:
-----------------
-| libcurl Bugs |
-----------------
+------------------
+| libcurl 7.66.0 |
+------------------
__________________________________________________________________________________________________________
/lib/setopt.c
https://github.com/curl/curl/pull/4321
@@ -112,6 +115,13 @@ https://github.com/curl/curl/pull/4332
__________________________________________________________________________________________________________
/lib/ftp.c
+https://github.com/curl/curl/issues/4342
+
+- result = ftp_nb_type(conn, TRUE, FTP_LIST_TYPE);
++ result = ftp_nb_type(conn, data->set.prefer_ascii, FTP_LIST_TYPE);
+
+__________________________________________________________________________________________________________
+/lib/ftp.c
https://github.com/curl/curl/pull/4348
@@ -136,14 +146,15 @@ ________________________________________________________________________________
https://github.com/curl/curl/issues/4329
case SSL_ERROR_ZERO_RETURN: /* no more data */
-- /* close_notify alert */
-- connclose(conn, "TLS close_notify");
+ /* close_notify alert */
++ if(num == FIRSTSOCKET)
+ connclose(conn, "TLS close_notify");
__________________________________________________________________________________________________________
-----------------
-| libssh2 Bugs |
-----------------
+-----------------
+| libssh2 1.9.0 |
+-----------------
__________________________________________________________________________________________________________
move the following constants from src/sftp.h to include/libssh2_sftp.h:
#define MAX_SFTP_OUTGOING_SIZE 30000
@@ -151,9 +162,9 @@ move the following constants from src/sftp.h to include/libssh2_sftp.h:
__________________________________________________________________________________________________________
-------------------
-| wxWidgets Bugs |
-------------------
+-------------------------------
+| wxWidgets master 2019-07-22 |
+-------------------------------
__________________________________________________________________________________________________________
Fix incorrect pane height calculations:
bgstack15