7

我无法让一个简单的类构造函数工作。

// In XModule.h
class XModule
{
...
public:
  TXMHeader     header;     // module header
  TXMInstrument*    instr;      // all instruments (256 of them)
  TXMSample*        smp;        // all samples (256 of them, only 255 can be used)
  TXMPattern*       phead;      // all pattern headers (256 of them)
}

模块.cpp

// In XModule.cpp
....
XModule::XModule()
{
  // allocated necessary space for all possible patterns, instruments and samples
  phead = new TXMPattern[256]; // Line # 1882
  instr = new TXMInstrument[256];
  smp = new TXMSample[MP_MAXSAMPLES];

  memset(&header,0,sizeof(TXMHeader));

  if (instr)
    memset(instr,0,sizeof(TXMInstrument)*256);

  if (smp)
    memset(smp,0,sizeof(TXMSample)*MP_MAXSAMPLES);

  if (phead)
    memset(phead,0,sizeof(TXMPattern)*256);

}
....

提取器.cpp

#include "Extractor.h"
#include "XModule.h"

#include <iostream>
using namespace std;

int main ()
{
  XModule* module = new XModule();
  SYSCHAR* fileName = "Greensleeves.xm";

  ...

  return 0;
}

当我使用 valgrind 运行时,出现以下错误:

==21606== Invalid write of size 8
==21606==    at 0x408BD3: XModule::XModule() (XModule.cpp:1882)
==21606==    by 0x4012D8: main (Extractor.cpp:9)
==21606==  Address 0x64874f0 is not stack'd, malloc'd or (recently) free'd

在该行的后面它会将和memset(instr,0,sizeof(TXMInstrument)*256);归零。pheadinstrsmp

使用 gdb 单步执行显示,在此之前pheadinstr、 和smp已正确设置,但数组指针的地址位于为数组新分配的区域内instr。检查&phead发现这是真的。

为什么新调用分配用于的instr = new TXMInstrument[256];内存空间,phead我可以做些什么来解决这个问题或进一步诊断问题?instrsmp

4

1 回答 1

9

事实证明,类定义中有一堆#IFDEF,所以当我针对使用项目makefile构建的库编译我的实用程序时,它使用源头文件并认为类具有不同数量的属性,所以它们是没有正确排列在内存中,并被数组的分配压垮。

我通过不使用项目库、将源文件复制到新文件夹并运行g++ *.cpp.

于 2012-04-06T05:01:22.867 回答