PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_parser_result_free()

void lwgeom_parser_result_free ( LWGEOM_PARSER_RESULT parser_result)

Definition at line 885 of file lwin_wkt.c.

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

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: