看似很好的 delete[] 程序崩溃

Program crash on seemingly fine delete[]

我正在使用 Visual C++ 2017 构建 OpenGL/GLFW 应用程序。但是,在我编写的以下函数中,delete[] 语句和消息 "HEAP CORRUPTION DETECTED : [...] CRT detected that the application wrote to memory after end of heap buffer." 发生崩溃:

#include <direct.h>

void setwd(char **argv)
{
    char *buf = new char[strlen(argv[0])];
    strcpy(buf, argv[0]);
    // Handle both possible separators
    char *p = strrchr(buf, '/');
    if(!p)
        p = strrchr(buf, '\');
    if(p)
    {
        *(p + 1) = '[=10=]';
        _chdir(buf);
    }
    delete[] buf;
}

如果我删除对 setwd 的调用,一切正常。我在调试时确保 strlen(argv[0]) 永远不会为 0.

值得注意的是,如果使用 MSYS2/gcc.

编译,这将完全正常工作

您需要在缓冲区中添加一个字符作为空终止符:new char[strlen(argv[0])+1]