使用 GCC 编译的 DLL 中的 malloc() 调用会崩溃,但适用于 Visual Studio
作者:LachoTomov 提问时间:12/10/2021
我正在尝试编译以下DLL代码: int* ptr; DLLExport int add(int a, int b) { ptr = (int*)malloc(10 * sizeof(int));...
, malloc 问答列表
作者:LachoTomov 提问时间:12/10/2021
我正在尝试编译以下DLL代码: int* ptr; DLLExport int add(int a, int b) { ptr = (int*)malloc(10 * sizeof(int));...