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

Function rmm_malloc

modules/aaa/mod_auth_digest.c:243–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

241/* RMM helper functions that behave like single-step malloc/free. */
242
243static void *rmm_malloc(apr_rmm_t *rmm, apr_size_t size)
244{
245 apr_rmm_off_t offset = apr_rmm_malloc(rmm, size);
246
247 if (!offset) {
248 return NULL;
249 }
250
251 return apr_rmm_addr_get(rmm, offset);
252}
253
254static apr_status_t rmm_free(apr_rmm_t *rmm, void *alloc)
255{

Callers 2

initialize_tablesFunction · 0.85
add_clientFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected