diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-12-12 00:15:49 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-12-12 00:15:49 +0000 |
commit | 7c879267dc47bb7723011ce7fd8f8cb518739c8c (patch) | |
tree | d48522d464e1ff041584b2a31f9ed94d0a22776f /devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp | |
parent | Unbreak (diff) |
devel/boost-*: update to 1.69.0
Changes: http://www.boost.org/users/history/version_1_69_0.html
PR: 232525
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D17645
Diffstat (limited to 'devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp')
-rw-r--r-- | devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp b/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp deleted file mode 100644 index 42931729b3ab..000000000000 --- a/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp +++ /dev/null @@ -1,29 +0,0 @@ -Fixes a null pointer dereference, patch origin: -https://github.com/boostorg/filesystem/pull/71 ---- libs/filesystem/src/operations.cpp.orig 2018-04-11 13:49:02 UTC -+++ libs/filesystem/src/operations.cpp -@@ -890,20 +890,20 @@ namespace detail - BOOST_FILESYSTEM_DECL - void copy(const path& from, const path& to, system::error_code* ec) - { -- file_status s(symlink_status(from, *ec)); -+ file_status s(detail::symlink_status(from, ec)); - if (ec != 0 && *ec) return; - - if(is_symlink(s)) - { -- copy_symlink(from, to, *ec); -+ detail::copy_symlink(from, to, ec); - } - else if(is_directory(s)) - { -- copy_directory(from, to, *ec); -+ detail::copy_directory(from, to, ec); - } - else if(is_regular_file(s)) - { -- copy_file(from, to, fs::copy_option::fail_if_exists, *ec); -+ detail::copy_file(from, to, detail::fail_if_exists, ec); - } - else - { |