似乎在函数realocVet第二次运行后,出现错误消息"malloc: ***错误用于对象0x7f8bfac039b0:指针被realloc'd未分配"。
void realocVet (float *precoList, char *nomeList, short int *quantidadeList)
{
static short int p=2,n=100,q=2;
p=4*p;
n=4*n;
q=4*q;
precoList =realloc(precoList,p * sizeof(float));
nomeList =realloc(nomeList,n * sizeof(char));
quantidadeList =realloc(quantidadeList,q * sizeof(short int ));
}
void insertData (float *precoList, char *nomeList, short int *quantidadeList, struct newCard myCard)
{
static short int slotsAvailable = 2, aux=2,currentCard=0,nnchar=0;
short int nchar;
precoList[currentCard] = myCard.preco;
quantidadeList[currentCard] = myCard.quantidade;
for (nchar=0;nchar<50;nchar++)
{
nomeList[nnchar] = myCard.nome[nchar];
nnchar++;
}
currentCard++;
slotsAvailable--;
if (slotsAvailable==0)
{
realocVet(precoList, nomeList, quantidadeList);
slotsAvailable = aux;
aux = 2*aux;
}
}
传入一个指针,float *precoList,然后realloc(可能会更改)。问题是当你返回时,调用者仍然有指针的旧值。
当你再次调用该函数时,它将被调用指向已释放内存的旧值。
void realocVet (float **precoList, char **nomeList, short int **quantidadeList)
{
static short int p=2,n=100,q=2;
p=4*p;
n=4*n;
q=4*q;
*precoList =realloc(*precoList,p * sizeof(float));
*nomeList =realloc(*nomeList,n * sizeof(char));
*quantidadeList =realloc(*quantidadeList,q * sizeof(short int ));
}