diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-28 14:32:47 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-28 15:25:17 +0200 |
commit | cae4105c9232c4d11a13fe21c139b99e803a0282 (patch) | |
tree | 4703aea0c053888c4cafd499910de795fe40f5b7 /source3/lib/bitmap.c | |
parent | 59d09cbed8e6fde867b88dce4408b64132e4ca6d (diff) | |
download | samba-cae4105c9232c4d11a13fe21c139b99e803a0282.tar.gz samba-cae4105c9232c4d11a13fe21c139b99e803a0282.tar.xz samba-cae4105c9232c4d11a13fe21c139b99e803a0282.zip |
s3: Remove unused bitmap_[allocate|free]
Diffstat (limited to 'source3/lib/bitmap.c')
-rw-r--r-- | source3/lib/bitmap.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/source3/lib/bitmap.c b/source3/lib/bitmap.c index 37c5b4510e2..bd56b4aad1a 100644 --- a/source3/lib/bitmap.c +++ b/source3/lib/bitmap.c @@ -23,42 +23,6 @@ pool without repetition */ /**************************************************************************** -allocate a bitmap of the specified size -****************************************************************************/ -struct bitmap *bitmap_allocate(int n) -{ - struct bitmap *bm; - - bm = SMB_MALLOC_P(struct bitmap); - - if (!bm) return NULL; - - bm->n = n; - bm->b = SMB_MALLOC_ARRAY(uint32, (n+31)/32); - if (!bm->b) { - SAFE_FREE(bm); - return NULL; - } - - memset(bm->b, 0, sizeof(uint32)*((n+31)/32)); - - return bm; -} - -/**************************************************************************** -free a bitmap. -****************************************************************************/ - -void bitmap_free(struct bitmap *bm) -{ - if (!bm) - return; - - SAFE_FREE(bm->b); - SAFE_FREE(bm); -} - -/**************************************************************************** talloc a bitmap ****************************************************************************/ struct bitmap *bitmap_talloc(TALLOC_CTX *mem_ctx, int n) |