PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ srs_state_memcheck()

static void srs_state_memcheck ( struct srs_data state)
static

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

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