Open
Description
With pdal=2.4.1 and python-pdal=3.1.2 (same happens with pdal=2.4.3 & python-pdal=3.2.0),
when executing twice the same command I get a segfault.
import pdal
data = "https://github.com/PDAL/PDAL/blob/master/test/data/las/1.2-with-color.las?raw=true"
stages = [pdal.Reader.las(filename=data), pdal.Filter.poisson()]
pdal.Pipeline(stages).execute()
stages = [pdal.Reader.las(filename=data), pdal.Filter.poisson()]
pdal.Pipeline(stages).execute()
It was tested with Filter.delaunay and there is not such a behavior.