1157 // add ext type pairs |
1157 // add ext type pairs |
1158 for(MimeDirective *d=mimecfg->directives_begin;d;d=d->next) { |
1158 for(MimeDirective *d=mimecfg->directives_begin;d;d=d->next) { |
1159 // add the type for each extension to the map |
1159 // add the type for each extension to the map |
1160 for(int i=0;i<d->nextensions;i++) { |
1160 for(int i=0;i<d->nextensions;i++) { |
1161 cxstring ext = d->extensions[i]; |
1161 cxstring ext = d->extensions[i]; |
1162 cxmutstr value = cx_strdup(cx_strn(d->type.ptr, d->type.length)); |
1162 cxmutstr value = cx_strdup_a(cfg->a, cx_strn(d->type.ptr, d->type.length)); |
1163 if(cxMapPut(map, cx_hash_key_bytes((const unsigned char *)ext.ptr, ext.length), value.ptr)) { |
1163 if(cxMapPut(map, cx_hash_key_bytes((const unsigned char *)ext.ptr, ext.length), value.ptr)) { |
1164 log_ereport(LOG_CATASTROPHE, "OOM"); |
1164 log_ereport(LOG_CATASTROPHE, "OOM"); |
1165 ret = -1; |
1165 ret = -1; |
1166 break; |
1166 break; |
1167 } |
1167 } |