Opened 13 years ago
Closed 12 years ago
#3829 closed Bugs (fixed)
windows_shared_memory invalid move constructor
Reported by: | Owned by: | Ion Gaztañaga | |
---|---|---|---|
Milestone: | Boost 1.45.0 | Component: | interprocess |
Version: | Boost 1.41.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Move constructor of windows_shared_memory has the following implementation: windows_shared_memory(BOOST_INTERPROCESS_RV_REF(windows_shared_memory) moved)
{ this->swap(moved); }
Since m_handle member is not initialized, moved.m_handle becomes invalid after swap.
Change History (1)
comment:1 by , 12 years ago
Milestone: | Boost 1.42.0 → Boost-1.45.0 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed for Boost 1.45 in release branch