[BUG] restore accidentely removed line in last patch !

The test condition for the acl expression validity got dropped, and
only the error remained. Error reported by Krzysztof Oledzki.
diff --git a/src/acl.c b/src/acl.c
index 0634d5d..c4942b2 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -669,6 +669,7 @@
 		if (!end)
 			goto out_free_expr;
 		arg2 = my_strndup(arg, end - arg);
+		if (!arg2)
 			goto out_free_expr;
 		expr->arg_len = end - arg;
 		expr->arg.str = arg2;