0

运行时附加的下面的 C 代码给出了错误

summary: malloc.c:3074: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' failed.

在每次调用 malloc(21) 时;(见下文)。有人可以解释为什么吗?我已经尝试了我能想到的所有可能的事情,但仍然失败。

文件:summary.c

/* 
* File:   summary.c
* Author: Maxim Veksler
*
* Created on December 4, 2009, 3:09 AM
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "manipulation.h"

/*
* Main for Maman 12, task 1 : Array summary utility
*/
int main(int argc, char** argv) {
    /*STUB*/
    char str[100];
    strcpy(str, "3 5 234 11 77 44 5");
    /*STUB*/

    int resultsSize;
    int* results;
    int* aggregated;

    results = parseInput(str, &resultsSize);
    aggregatedArray((int*)NULL, (int)NULL);


    return 0;
}

文件操作.c

    /*
    * File:   manipulation.c
    * Author: Maxim Veksler
    *
    * Created on December 4, 2009, 3:09 AM
    */

    #include <stdlib.h>
    #include <string.h>
    #include <stdio.h>

    /*
    * Parse the input from user, dynamically allocate memory to the maximum
    * possible requirment. Then convert the array of string tokens into an
    * simple array of integers.
    */
    int* parseInput(char* input, int* nOfResults) {
        /* Allocate memory by the maximum possibly required size for int... */
        int *results = (int*) malloc(strlen(input));

        int* insertIterator = results;
        char* pch;


        /* We trash the user input, but it's cool - Worthless as usual. */
        pch = strtok(input,"\t ,.-");
        *nOfResults = 0;

        while(pch != NULL) {
        (*nOfResults)++;

        *insertIterator = atoi(pch);
        insertIterator++;
        pch = strtok(NULL, "\t ,.-");
        }

        return results;
    }


    /*
    * Summary the values given in the int array and return adress to new array
    * containing an increasin sum of the values.
    */
    int* aggregatedArray(int* inputArray, int size) {
        int* results;
        malloc(20);
        malloc(21);
    }

编辑请考虑到这个代码是一个精简的版本,它被带到这里来显示问题。我已经删除了所有不相关的部分。

4

3 回答 3

5

编辑:哇,我刚刚意识到你的代码中有一个非常糟糕的逻辑错误。这不仅仅是泄漏,你也有缓冲区溢出!

int *results = (int*) malloc(strlen(input));

这将分配18 个字节(输入的长度)并将其视为 's 的数组int,这意味着您可以将18 / sizeof(int) ints 放入其中。假设通常的 x86 大小,这意味着您只能容纳 (18 / 4) == 4.5 个整数!稍后您的代码将在数组中写入比这更多的代码。大错误。

要解决此问题,您应该使用realloc. 像这样的东西:

int *results = malloc(sizeof(int));
int result_size = 1;
int result_count = 0;

while(/*whatever*/) {
    /* ok, i want to add an element to results */
    if(result_count == result_size - 1) {
        int *p = realloc(results, (result_size + 1) * sizeof(int));
        if(!p) {
            free(results);
            return NULL; /* no more memory! */
        }
        results = p;
        result_size++;
    }
    results[result_count++] = /*value*/
}
return results;

它泄漏是因为您有 2 mallocs,您没有将结果存储在任何地方。free这使得那些调用返回的指针不可能。

事实上,我不确定aggregatedArray实际上应该做什么,目前,它除了泄漏什么都不

此外,您还有results = parseInput(str, &resultsSize);whereparseInput返回一个malloced 指针。free(results);当您不再需要它时(可能就在aggregatedArray通话之后) ,您应该稍后再做。

最后,作为旁注。我猜这aggregatedArray((int*)NULL, (int)NULL);实际上应该是aggregatedArray(results, resultsSize);:-P。

于 2009-12-04T16:33:35.783 回答
1

以下语句分配 18 个字节的内存(“3 5 234 11 77 44 5”)

int *results = (int*) malloc(strlen(input));

但是您将整数放入该内存区域......所以当你用完所有空间时它不会持续很长时间......所以这绝对是错误的。

进一步..您没有用完任何 free() 调用..所以这也是一个问题..

于 2009-12-04T16:48:33.257 回答
0

在函数“aggregatedArray”中,您没有将从 malloc 返回的指针分配给变量,以便以后可以释放它们。他们迷失在太空中!

于 2009-12-04T16:33:39.043 回答