src/server/daemon/config.c

changeset 574
76450adae540
parent 556
b036ccad4b49
child 579
e10457d74fe1
--- a/src/server/daemon/config.c	Thu Jan 30 18:29:30 2025 +0100
+++ b/src/server/daemon/config.c	Thu Jan 30 18:54:43 2025 +0100
@@ -1159,7 +1159,7 @@
             // add the type for each extension to the map
             for(int i=0;i<d->nextensions;i++) {
                 cxstring ext = d->extensions[i];
-                cxmutstr value = cx_strdup(cx_strn(d->type.ptr, d->type.length));
+                cxmutstr value = cx_strdup_a(cfg->a, cx_strn(d->type.ptr, d->type.length));
                 if(cxMapPut(map, cx_hash_key_bytes((const unsigned char *)ext.ptr, ext.length), value.ptr)) {
                     log_ereport(LOG_CATASTROPHE, "OOM");
                     ret = -1;

mercurial