if any property values were set which defined namespaces these
came out mangled in the PROPFIND response.
PR: 11637
Submitted by: Amit Athavale <amit_athavale@persistent.co.in>
Reviewed by: Joe Orton, Jeff Trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99690
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) Fix a problem with namespace mappings being dropped in mod_dav_fs;
+ if any property values were set which defined namespaces these
+ came out mangled in the PROPFIND response. PR 11637.
+ [Amit Athavale <amit_athavale@persistent.co.in>]
+
*) forward port of buffer overflow fixes for htdigest. [Thom May]
*) prefork MPM: Use the right permissions for the directory created
** we don't know the namespace yet, then add it to the map and to our
** table of known namespaces.
*/
- pmap = apr_palloc(db->pool, namespaces->nelts * sizeof(*pmap));
+ m->ns_map = pmap = apr_palloc(db->pool, namespaces->nelts * sizeof(*pmap));
for (i = namespaces->nelts, puri = (const char **)namespaces->elts;
i-- > 0;
++puri, ++pmap) {
}
}
- m->ns_map = pmap;
*mapping = m;
return NULL;
}