summaryrefslogtreecommitdiff
path: root/lib/util/util.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-03-24 15:19:09 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-03-24 15:19:09 +0100
commit14fdc1c5cd4ca0b3f88b2d407d40ba5be7218085 (patch)
tree4cf27501438c4d717f11ba759adec67da5ab919c /lib/util/util.c
parentc0c52ac1a40db70d8b19cb8d73ed4759b0a4f905 (diff)
downloadsamba-14fdc1c5cd4ca0b3f88b2d407d40ba5be7218085.tar.gz
samba-14fdc1c5cd4ca0b3f88b2d407d40ba5be7218085.tar.bz2
samba-14fdc1c5cd4ca0b3f88b2d407d40ba5be7218085.zip
lib/util: Move calloc_array and memalign_array to top-level libutil.
Diffstat (limited to 'lib/util/util.c')
-rw-r--r--lib/util/util.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/util/util.c b/lib/util/util.c
index 960bda0f9b..89d5fc3611 100644
--- a/lib/util/util.c
+++ b/lib/util/util.c
@@ -646,6 +646,34 @@ void *malloc_array(size_t el_size, unsigned int count)
return realloc_array(NULL, el_size, count, false);
}
+/****************************************************************************
+ Type-safe memalign
+****************************************************************************/
+
+void *memalign_array(size_t el_size, size_t align, unsigned int count)
+{
+ if (count*el_size >= MAX_MALLOC_SIZE) {
+ return NULL;
+ }
+
+ return memalign(align, el_size*count);
+}
+
+/****************************************************************************
+ Type-safe calloc.
+****************************************************************************/
+
+void *calloc_array(size_t size, size_t nmemb)
+{
+ if (nmemb >= MAX_MALLOC_SIZE/size) {
+ return NULL;
+ }
+ if (size == 0 || nmemb == 0) {
+ return NULL;
+ }
+ return calloc(nmemb, size);
+}
+
/**
Trim the specified elements off the front and back of a string.
**/