gpt4 book ai didi

c++ - boost.filesystem create_directories 抛出 std::bad_alloc

转载 作者:可可西里 更新时间:2023-11-01 13:45:19 28 4
gpt4 key购买 nike

我有一个在 Windows XP SP3 中运行的使用 Boost 1.47.0 的 Visual Studio 2008 C++03 应用程序。

调用 boost::filesystem::create_directories( L"c:\\foo\\bar"); 抛出一个 std::bad_alloc 异常。

在输出窗口中,我看到一条调试堆消息:“HEAP[test.exe]:分配大小无效 - CDCDCDCE(超过 7ffdeff)”

调用堆栈显示 boost.filesystem 创建了一个新的语言环境和 Microsoft 标准库文件 xlocale 第 309 行中最后可见的代码行。

msvcp90.dll!std::_Allocate<char>()  + 0x17 bytes    
msvcp90.dll!std::allocator<char>::allocate() + 0xf bytes
msvcp90.dll!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Copy() + 0x70 bytes
msvcp90.dll!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Grow() + 0x26 bytes
msvcp90.dll!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::assign() + 0x50 bytes
msvcp90.dll!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string<char,std::char_traits<char>,std::allocator<char> >() + 0x24 bytes
msvcp90.dll!std::locale::_Locimp::_Locimp() + 0x47 bytes
> test.exe!std::locale::locale<windows_file_codecvt>(const std::locale & _Loc={...}, const windows_file_codecvt * _Facptr=0x00b48f60) Line 309 + 0x69 bytes C++
test.exe!`anonymous namespace'::default_locale() Line 735 C++
test.exe!`anonymous namespace'::path_locale() Line 777 + 0x2a bytes C++
test.exe!boost::filesystem3::path::wchar_t_codecvt_facet() Line 797 + 0x25 bytes C++
test.exe!boost::filesystem3::path::codecvt() Line 388 + 0x5 bytes C++
test.exe!boost::filesystem3::path::path<wchar_t const *>(const wchar_t * begin=0x00b460f8, const wchar_t * end=0x00b46116) Line 162 + 0x5 bytes C++
test.exe!boost::filesystem3::path::parent_path() Line 313 + 0x57 bytes C++
test.exe!boost::filesystem3::detail::create_directories(const boost::filesystem3::path & p={...}, boost::system::error_code * ec=0x00000000) Line 832 + 0x13 bytes C++
test.exe!boost::filesystem3::create_directories(const boost::filesystem3::path & p={...}) Line 318 + 0x29 bytes C++
test.exe!wmain(int __formal=1, int __formal=1) Line 112 + 0xc bytes C++
test.exe!__tmainCRTStartup() Line 583 + 0x19 bytes C
test.exe!wmainCRTStartup() Line 403 C
kernel32.dll!_BaseProcessStart@4() + 0x23 bytes

有人可以建议如何解决这个问题吗?

编辑 我更新到 boost 1.50.0。问题依然存在。

最佳答案

这似乎是一个 known bug在运行 DEBUG 构建时,在 Microsoft 的 std::locale 实现中。据报道,2012 年 6 月。

您收到的有关内存地址 CDCDCDCE 的消息暗示正在访问已删除的内存,如该错误所述。

Microsoft 的网站目前没有描述解决方案,但我建议通过将 L"c:\\foo\\bar" 更改为 "c:\\foo\\bar".

关于c++ - boost.filesystem create_directories 抛出 std::bad_alloc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12186955/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com