阅读背景:

二维阵列内存泄漏 - 应该很容易,我觉得很愚蠢

来源:互联网 

Very simple code:

非常简单的代码:

signed int **ifftResults = (signed int **)malloc(sizeof(signed int *) * recordsPerBuffer);

for (int i=0; i < recordsPerBuffer; i++)
{
    ifftResults[i] = (signed int*)malloc(sizeof(signed int) * fftLength);
}
signed int **iff



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: