PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ SfRealloc()

static void* SfRealloc ( void *  pMem,
int  nNewSize 
)
static

Definition at line 323 of file shpopen.c.

References malloc().

Referenced by if(), and SHPWriteObject().

325 {
326  if( pMem == NULL )
327  return( (void *) malloc(nNewSize) );
328  else
329  return( (void *) realloc(pMem,nNewSize) );
330 }
void * malloc(YYSIZE_T)
Here is the call graph for this function:
Here is the caller graph for this function: