Boost C++ Libraries: Ticket #10305: Abstract namespace endpoint bug in boost::asio https://svn.boost.org/trac10/ticket/10305 <p> strlen calculated erraounusly, as abstract namespace paths begin with 0. </p> <p> see boost/asio/local/detail/impl/endpoint.ipp:44 </p> <p> init(path, strlen(path)); </p> <p> Could be replaced with: </p> <p> init(path, strlen(path + 1) + 1); </p> <p> Affects more similar lines in file. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/10305 Trac 1.4.3 anonymous Sat, 02 Aug 2014 20:38:38 GMT summary changed https://svn.boost.org/trac10/ticket/10305#comment:1 https://svn.boost.org/trac10/ticket/10305#comment:1 <ul> <li><strong>summary</strong> <span class="trac-field-old">Abstract namespace bug in boost::asio</span> → <span class="trac-field-new">Abstract namespace endpoint bug in boost::asio</span> </li> </ul> Ticket