diff -r 07b815faa6ac -r f00d03835dd9 src/server/daemon/location.c --- a/src/server/daemon/location.c Tue Dec 30 21:44:49 2025 +0100 +++ b/src/server/daemon/location.c Tue Jan 13 18:09:20 2026 +0100 @@ -63,7 +63,7 @@ } else if(!cx_strcasecmp(name, "AddACL")) { DIR_CHECK_ARGC(1); if(!location->config.acls) { - CxList *aclList = cxLinkedListCreate(cfg->a, NULL, CX_STORE_POINTERS); + CxList *aclList = cxLinkedListCreate(cfg->a, CX_STORE_POINTERS); if(!aclList) { return 1; } @@ -107,7 +107,7 @@ } if(!location->rewrite) { - location->rewrite = cxLinkedListCreate(a, NULL, CX_STORE_POINTERS); + location->rewrite = cxLinkedListCreate(a, CX_STORE_POINTERS); if(!location->rewrite) { return 1; }