summaryrefslogtreecommitdiff
path: root/src/strutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strutil.c')
-rw-r--r--src/strutil.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/strutil.c b/src/strutil.c
index 7d436ec..4502b83 100644
--- a/src/strutil.c
+++ b/src/strutil.c
@@ -83,7 +83,6 @@ char** split_len(const char* start, const char* end, char delim)
{
char** ret;
size_t count = 0, size = 2;
- assert(start && end);
assert(start <= end);
ret = malloc((size + 1) * sizeof(char*));
if (ret)