MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / adfFreeBitmap

Function adfFreeBitmap

dep/adflib/src/adf_bitm.c:542–558  ·  view source on GitHub ↗

* adfFreeBitmap * */

Source from the content-addressed store, hash-verified

540 *
541 */
542void adfFreeBitmap(struct Volume* vol)
543{
544 int i;
545
546 for(i=0; i<vol->bitmapSize; i++)
547 free(vol->bitmapTable[i]);
548 vol->bitmapSize = 0;
549
550 free(vol->bitmapTable);
551 vol->bitmapTable = 0;
552
553 free(vol->bitmapBlocks);
554 vol->bitmapBlocks = 0;
555
556 free(vol->bitmapBlocksChg);
557 vol->bitmapBlocksChg = 0;
558}
559
560
561/*#######################################################################################*/

Callers 3

adfUnMountFunction · 0.85
adfCreateVolFunction · 0.85
adfReadBitmapFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected