summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/lib/util.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/lib/util.c b/source/lib/util.c
index ae94b710b2c..bf012b97219 100644
--- a/source/lib/util.c
+++ b/source/lib/util.c
@@ -1819,6 +1819,17 @@ char *smb_xstrdup(const char *s)
return s1;
}
+/**
+ strndup that aborts on malloc fail.
+**/
+char *smb_xstrndup(const char *s, size_t n)
+{
+ char *s1 = strndup(s, n);
+ if (!s1)
+ smb_panic("smb_xstrndup: malloc fail\n");
+ return s1;
+}
+
/*
vasprintf that aborts on malloc fail
*/