diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/lib/curl_uploader.cc | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2015-12-03 Carl Hetherington <cth@carlh.net> + + * Fix crash on uploading to TMS via FTP. + 2015-12-02 Carl Hetherington <cth@carlh.net> * Version 2.6.0 released. diff --git a/src/lib/curl_uploader.cc b/src/lib/curl_uploader.cc index d996fde53..11c389307 100644 --- a/src/lib/curl_uploader.cc +++ b/src/lib/curl_uploader.cc @@ -92,6 +92,7 @@ CurlUploader::upload_file (boost::filesystem::path from, boost::filesystem::path } fclose (_file); + _file = 0; } size_t |
