PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ SfRealloc()

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

Definition at line 179 of file dbfopen.c.

References malloc().

Referenced by DBFAddNativeFieldType(), DBFAlterFieldDefn(), DBFGetCodePage(), and DBFOpenLL().

181 {
182  if( pMem == NULL )
183  return( (void *) malloc(nNewSize) );
184  else
185  return( (void *) realloc(pMem,nNewSize) );
186 }
void * malloc(YYSIZE_T)
Here is the call graph for this function:
Here is the caller graph for this function: