PostGIS  3.6.1dev-r@@SVN_REVISION@@

◆ srs_state_memcheck()

static void srs_state_memcheck ( struct srs_data state)
static

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

423 {
424  if (state->num_entries == state->capacity)
425  {
426  state->capacity *= 2;
427  state->entries = repalloc(state->entries, state->capacity * sizeof(*(state->entries)));
428  }
429  return;
430 }
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: