J'ai essayé de convertir un projet vc7.1 en vs2010 que j'ai obtenu de codeproject.(Et voici le lien h tt p://www.codeproject.com/KB/cpp/transactions.aspx?fid=11253&df=90&mpp=50&noise=3&sort=Position&view=Expanded&fr=1#xx0xx
Mais après avoir converti et modifié sa configuration.
Je trouve qu'il débogue sans succès, il dit Unhandled exception at 0x0028e7b9 in DrawIt.exe : 0xC0000005 : Violation d'accès en écrivant l'emplacement 0x00000000.
La ligne d'erreur se présente comme suit
data = new(Mm::Allocate(sizeof(DocData), sid)) DocData();
Et la fonction
void* Allocate(size_t size, SPACEID sid)
{
AUDIT
Spaces::iterator s = spaces.find(sid);
if (s == spaces.end())
return NULL;
Space& space = s->second;
if (!space.transacting)
return NULL;
size = max(size, sizeof(Free));
// TODO: assert that "data" is allocated in space
space.AssertData();
// are there any more free chunks?
if (!space.data->sFreeHead) {
space.data->Insert(space.More(size));
}
AUDIT
// find the first chunk at least the size requested
Free* prev = 0;
Free* f = space.data->sFreeHead;
while (f && (f->size < size)) {
prev = f;
f = f->next;
}
AUDIT
// if we found one, disconnect it
if (f) {
space.data->locTree.remove((size_t)f);
if (prev) prev->next = f->next;
else space.data->sFreeHead = f->next;
f->next = 0;
memset(&f->loc, 0, sizeof(f->loc));
} else {
f = space.More(size);
}
// f is disconnected from the free list at this point
AUDIT
// if the free chunk is too(?) big, carve a peice off and return
// the rest to the free list
if (f->size > (2*(size + sizeof(Free)))) {
Free* tmp = space.data->Slice(f, size); // slice size byte off 'f'
space.data->Insert(f); // return the remainder to the free list
f = tmp;
}
AUDIT
CHECK_POINTER(f)
void* p = reinterpret_cast<void*>((char*)f + sizeof(Free::SIZE_TYPE));
CHECK_POINTER(p)
return p;
}
Quelqu'un a une idée, s'il vous plaît ?
Comme je ne suis pas doué pour le C++, il me faudra un certain temps avant de trouver comment résoudre ce problème. J'ai téléchargé le code source fichier source J'apprécierais que quelqu'un m'aide.