PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwgeom_parser_result_free()

void lwgeom_parser_result_free ( LWGEOM_PARSER_RESULT parser_result)

Definition at line 886 of file lwin_wkt.c.

887{
888 if ( parser_result->geom )
889 {
890 lwgeom_free(parser_result->geom);
891 parser_result->geom = 0;
892 }
893 if ( parser_result->serialized_lwgeom )
894 {
895 lwfree(parser_result->serialized_lwgeom );
896 parser_result->serialized_lwgeom = 0;
897 }
898 /* We don't free parser_result->message because
899 it is a const *char */
900}
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138
void lwfree(void *mem)
Definition lwutil.c:242

References struct_lwgeom_parser_result::geom, lwfree(), lwgeom_free(), and struct_lwgeom_parser_result::serialized_lwgeom.

Referenced by cu_twkb_in(), cu_wkb_in(), cu_wkb_malformed_in(), cu_wkt_in(), LWGEOM_from_text(), LWGEOM_in(), test_wkt_double(), and test_wkt_in_errlocation().

Here is the call graph for this function:
Here is the caller graph for this function: