似乎在函数 realocVet 第二次运行后,出现错误消息“malloc: *** error for object 0x7f8bfac039b0: pointer being realloc'd was not assigned”。
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;
}
}