summaryrefslogtreecommitdiff
path: root/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp
diff options
context:
space:
mode:
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.cpp29
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
- {