MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlMallocLoc

Function xmlMallocLoc

ThirdParty/libxml2/vtklibxml2/xmlmemory.c:67–72  ·  view source on GitHub ↗

* xmlMallocLoc: * @size: an int specifying the size in byte to allocate. * @file: the file name or NULL * @line: the line number * * DEPRECATED: don't use * * Returns a pointer to the allocated area or NULL in case of lack of memory. */

Source from the content-addressed store, hash-verified

65 * Returns a pointer to the allocated area or NULL in case of lack of memory.
66 */
67void *
68xmlMallocLoc(size_t size, const char *file ATTRIBUTE_UNUSED,
69 int line ATTRIBUTE_UNUSED)
70{
71 return(xmlMemMalloc(size));
72}
73
74/**
75 * xmlMallocAtomicLoc:

Callers

nothing calls this directly

Calls 1

xmlMemMallocFunction · 0.85

Tested by

no test coverage detected