Closes #4327
git-svn-id: http://svn.osgeo.org/postgis/branches/2.3@17525
b70326c6-7e19-0410-871a-
916f4a2858ee
- #4361, Fix postgis_type_name with (GEOMETRYM,3) (Matt Bretl)
- #4326, Fix circular arc distance calculation (Paul Ramsey)
- #4388, AddRasterConstraints: Ignore NULLs when generating constraints (Raúl Marín)
+ - #4327, Avoid pfree'ing the result of getenv (Raúl Marín)
PostGIS 2.3.9
if (strcmp(env, "1") == 0)
boot_postgis_enable_outdb_rasters = true;
- pfree(env);
+ if (env != env_postgis_enable_outdb_rasters)
+ pfree(env);
}
POSTGIS_RT_DEBUGF(
4,