Closes #3782 for PostGIS 2.3.4
Patch provided by Even Rouault
git-svn-id: http://svn.osgeo.org/postgis/branches/2.3@15479
b70326c6-7e19-0410-871a-
916f4a2858ee
+PostGIS 2.3.4
+2017/xx/xx
+
+ * Bug Fixes
+
+ - #3782, Memory leak in lwline_from_wkb_state
+ (Even Rouault)
+
+
+
+
PostGIS 2.3.3
2017/07/01
POINTARRAY *pa = ptarray_from_wkb_state(s);
if( pa == NULL || pa->npoints == 0 )
+ {
+ ptarray_free(pa);
return lwline_construct_empty(s->srid, s->has_z, s->has_m);
+ }
if( s->check & LW_PARSER_CHECK_MINPOINTS && pa->npoints < 2 )
{