PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ srs_state_memcheck()

static void srs_state_memcheck ( struct srs_data state)
static

Definition at line 409 of file postgis/lwgeom_transform.c.

410 {
411  if (state->num_entries == state->capacity)
412  {
413  state->capacity *= 2;
414  state->entries = repalloc(state->entries, state->capacity * sizeof(*(state->entries)));
415  }
416  return;
417 }
struct srs_entry * entries

References srs_data::capacity, srs_data::entries, and srs_data::num_entries.

Referenced by srs_find_planar(), and srs_state_codes().

Here is the caller graph for this function: