Files
test/source
Germano Cavalcante f74ed4d45d Fix memory being written after the end of the heap buffer
`target_snap_points` could have size 0, but even so
`memset(snap_data->target_snap_points, 0, sizeof(int));` was always
called.

Avoid writing to unallocated memory. And use C++ arrays.
2023-11-13 19:35:55 -03:00
..