MCPcopy Create free account
hub / github.com/apache/httpd / ap_realloc

Function ap_realloc

server/util.c:3168–3174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3166}
3167
3168AP_DECLARE(void *) ap_realloc(void *ptr, size_t size)
3169{
3170 void *p = realloc(ptr, size);
3171 if (p == NULL && size != 0)
3172 ap_abort_on_oom();
3173 return p;
3174}
3175
3176#if APR_HAS_THREADS
3177

Callers 1

ssl_asn1_table_setFunction · 0.85

Calls 1

ap_abort_on_oomFunction · 0.85

Tested by

no test coverage detected