MCPcopy Create free account
hub / github.com/LibRaw/LibRaw / malloc

Method malloc

src/utils/utils_libraw.cpp:258–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256}
257
258void *LibRaw::malloc(size_t t)
259{
260 void *p = memmgr.malloc(t);
261 if (!p)
262 throw LIBRAW_EXCEPTION_ALLOC;
263 return p;
264}
265void *LibRaw::realloc(void *q, size_t t)
266{
267 void *p = memmgr.realloc(q, t);

Callers 1

crx.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected