Opened 5 years ago

#13339 new Bugs

boost::filesystem segfaults under simple use...

Reported by: Robert H Whitcher <robert@…> Owned by: Beman Dawes
Milestone: To Be Determined Component: filesystem
Version: Boost 1.65.0 Severity: Regression
Keywords: Cc:

Description

Centos - 7 3.10.0-693.el7.x86_64 devtools-6 installed (g++ 6.3.1) Attempted using Boost 1_65_1 Failed Segfault Attempted using Boost 1_54_0 Passed

Simple program... Statically linked after building boost. #include <boost/filesystem.hpp> #include <iostream>

int main() {

boost::filesystem::path path("/tmp"); if ( boost::filesystem::exists( path ) ) {

std::cout << "TEST"; } else { std::cout << "TEST2";

} return 0;

}

Segfaults on the "boost::filesystem::exists"

Change History (0)

Note: See TracTickets for help on using tickets.