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

Function xmlReallocLoc

ThirdParty/libxml2/vtklibxml2/xmlmemory.c:138–143  ·  view source on GitHub ↗

* xmlReallocLoc: * @ptr: the initial memory block pointer * @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

136 * Returns a pointer to the allocated area or NULL in case of lack of memory.
137 */
138void *
139xmlReallocLoc(void *ptr, size_t size, const char *file ATTRIBUTE_UNUSED,
140 int line ATTRIBUTE_UNUSED)
141{
142 return(xmlMemRealloc(ptr, size));
143}
144
145/**
146 * xmlMemRealloc:

Callers

nothing calls this directly

Calls 1

xmlMemReallocFunction · 0.85

Tested by

no test coverage detected