aecat segfaults with -p
Status: Beta
Brought to you by:
btakahashi
aecat segfaults with -p due to an incorrect variable (doc) being used in vlayer function "_get_cell_COMPOSITE" at line 11
correct variable is ud makeing the function look like this.
static void _get_cell_COMPOSITE(AEWAN_Cell *r_cell, int x, int y, void *ud) {
*r_cell = AEWAN_document_calc_effective_cell(ud, x, y);
}
This is what I did to the function Delete the first line, and s/doc/ud/ the second (remaining line)
The declaration was correct and did not need to change.