MCPcopy Index your code
hub / github.com/MapServer/MapServer / msBufferInit

Function msBufferInit

maputil.c:2025–2030  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2023}
2024
2025void msBufferInit(bufferObj *buffer) {
2026 buffer->data=NULL;
2027 buffer->size=0;
2028 buffer->available=0;
2029 buffer->_next_allocation_size = MS_DEFAULT_BUFFER_ALLOC;
2030}
2031
2032void msBufferResize(bufferObj *buffer, size_t target_size){
2033 while(buffer->available <= target_size) {

Callers 2

msSaveImageBufferFunction · 0.85
createImageCairoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected