Skip to content
Snippets Groups Projects
Commit 823f26ed authored by Morris Jette's avatar Morris Jette
Browse files

Out of range check added for BGL/BGP array

When reading an old state file, if the old coordinates would be out of bounds in
the new array, return a NULL pointer rather than going off the end of the array
and getting a segv.
parent a12a9502
No related branches found
No related tags found
No related merge requests found
......@@ -682,6 +682,12 @@ extern int copy_node_path(List nodes, List *dest_nodes)
extern ba_mp_t *coord2ba_mp(const uint16_t *coord)
{
if ((coord[X] >= DIM_SIZE[X]) || (coord[Y] >= DIM_SIZE[Y]) ||
(coord[Z] >= DIM_SIZE[Z])) {
error("Invalid coordinate %d:%d:%d",
coord[X], coord[Y], coord[Z]);
return NULL;
}
return &ba_main_grid[coord[X]][coord[Y]][coord[Z]];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment