id summary reporter owner description type status milestone component version severity resolution keywords cc 2766 interprocess: error in boost::interprocess::file_lock::swap Anton Ivanov Ion Gaztañaga "current code (1.38.0) is: #if !defined(BOOST_INTERPROCESS_RVALUE_REFERENCE) && !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED) void swap(detail::moved_object mother) { this->swap(mother.get()); } void swap(file_lock &other) #else void swap(file_lock &&other) #endif { file_handle_t tmp = m_file_hnd; other.m_file_hnd = other.m_file_hnd; other.m_file_hnd = tmp; } Seems, line: other.m_file_hnd = other.m_file_hnd; is wrong. Right version: m_file_hnd = other.m_file_hnd;" Bugs closed Boost 1.39.0 interprocess Boost 1.38.0 Problem fixed