如何找到错误:*** ./a.out'中的错误:free():下一个大小无效(快):0x09767150 ***

时间:2015-06-07 21:01:58

标签: c++ runtime-error

我的main.cpp和grid.h编译成功。在调整网格大小后使用函数填充时会出现问题。这在运行程序后产生错误:

  

*`./a.out'出错:free():下一个大小无效(快):0x0871d150 *

的main.cpp

#include "grid.h"
#include <cstdlib>

#if 1
    #define log(x) std::cout << x << std::endl;
#else
    #define log(x) 
#endif  

#ifdef _GLIBCXX_CSTDLIB
    #define clear system("clear");
    #define reset system("reset");
#else
    #define clear
    #define reset
#endif

std::pair<const int, const int> LARGE  = std::make_pair(8,8);
std::pair<const int, const int> MEDIUM = std::make_pair(6,6);
std::pair<const int, const int> SMALL  = std::make_pair(4,4); 


int main(){
    clear
    grid<char> a(LARGE,'#');
    grid<int>  b(4,5,   9 );
    a.resize(4,8);
    b.resize(MEDIUM);
    b.fill(8);
    log(a);
    log(b);
    return 0;
}

grid.h

#ifndef GRID_H
#define GRID_H

#include <iostream>
#include <vector>

template<typename type>
class grid{
    public://Functions
        grid(std::pair<const type, const type> dimension, type filler = 0) : rows(dimension.first), cols(dimension.second){
                matrix.assign(rows, std::vector<type>(cols, filler));
        };
        grid(const int _rows, const int _cols, type filler = 0) : rows(_rows), cols(_cols){
                matrix.assign(rows, std::vector<type>(cols, filler));
        };
        void resize(std::pair<const type, const type> dimension){
            rows = dimension.first, cols = dimension.second;
            matrix.resize(rows, std::vector<type>(cols));
        };
        void resize(const int _rows, const int _cols){
            rows = _rows, cols = _cols;
            matrix.resize(rows, std::vector<type>(cols));
        };
        void fill(type filler){
            for(int r = 0; r < rows; r++){
                for(int c = 0; c < cols; c++){
                    matrix[r][c] = filler;
                }
            }
        };
    public://Operators
        friend std::ostream& operator<<(std::ostream& out, grid& g){
            for(int r = 0; r < g.rows; r++){
                for(int c = 0; c < g.cols; c++){
                    out << g.matrix[r][c];
                }out << std::endl;
            }return out;
        };
        //Variables
        std::vector<std::vector<type>> matrix;
        int  rows;
        int  cols;
};

#endif//GRID_H

控制台输出

dylan@Aspire-one:~$ ./a.out
########
########
########
########

888888
888888
888888
888888
888888
888888

*** Error in `./a.out': free(): invalid next size (fast): 0x09767150 ***
Aborted (core dumped)
dylan@Aspire-one:~$ 

2 个答案:

答案 0 :(得分:1)

  

Error in './a.out': free(): invalid next size (fast): 0x0871d150

此错误始终表示您的程序损坏了其堆(例如通过写入堆分配缓冲区的末尾)。

标准查找此问题的方法是在Valgrind下运行您的程序,它将直接指出您的问题。

地址清理程序(gcc -fsanitize=address -g ...)是另一种发现此问题的标准工具。

答案 1 :(得分:0)

您的调整大小方法不正确。如果已有N行并调整为X行,则任何现有行都不会更改为新列大小。当你使用它们时就会失败。