0

我在运行时分配了两个 16 位指针,以便将一些长双精度值保存到闪存(使用 Microchip DEE 闪存仿真库)。代码工作正常,并正确调用保存的值,但如果我在 malloc() 的指针上使用 free(),则代码在下一次 malloc() 调用时出现段错误(在另一个函数中,在代码的另一部分) .

void readMicCalData(Microphone* pMicRead)
{
/* Allocate space for 2*16-bit pointers */
int16_t* tempFlashBuffer = (int16_t*)malloc(sizeof(int16_t));
int16_t* tempFlashBuffer2 = (int16_t*)malloc(sizeof(int16_t));

if ((tempFlashBuffer == NULL) || (tempFlashBuffer2 == NULL)) {
    debugMessage("\n\rHEAP> Failed to allocate memory for flash buffer!\n\r",1);
}

/* Increment through 2-byte blocks */
wc1 = RCM_MIC_CAL_START_ADDRESS;
while(wc1 < RCM_MIC_CAL_END_ADDRESS) {

    /* Init pointer to lowest 16-bits of 32-bit value e.g. 0x0D90 */
    tempFlashBuffer = (int16_t*) &pMicRead->Factor_dB[i4];

    /* Save pointer and increment to next 16-bit address e.g. 0x0D92 */
    tempFlashBuffer2 = tempFlashBuffer + 1;

    /* Read first 16-bit value */
    *tempFlashBuffer = DataEERead(wc1);

    /* Catch 0xFFFF and set to zero. Otherwise the float becomes NaN. */
    if (*tempFlashBuffer == 0xFFFF) { *tempFlashBuffer = 0; }

    /* Read next 16-bits of value */
    *tempFlashBuffer2 = DataEERead(wc1 + 1);

    if (*tempFlashBuffer2 == 0xFFFF) { *tempFlashBuffer2 = 0; }

    /* Move to next 2*16-bit block of memory */
    wc1 = wc1 + 2;

    /* Move to next saved mic. cal. frequency */
    i4++;
}

/* Free memory */
free(tempFlashBuffer);
free(tempFlashBuffer2);
}

tempFlashBuffer2 分配可以算作增量吗?因此我没有释放()从malloc()分配的相同指针?

如果我不释放()这两个指针,代码运行良好并且看不到任何段错误(至少在短期内不会!)。

4

1 回答 1

1

传递给的指针free()必须是先前调用malloc(),calloc()或时返回的指针realloc()。这不是这里的情况,因为您正在更改指针值,导致未定义的行为。从第7.20.3.2节C99 标准的自由功能:

free 函数会导致 ptr 指向的空间被释放,也就是说,可用于进一步分配。如果 ptr 是空指针,则不会发生任何操作。否则,如果参数与 calloc、malloc 或 realloc 函数先前返回的指针不匹配,或者如果空间已通过调用 free 或 realloc 被释放,则行为未定义。

于 2013-05-04T07:26:15.233 回答