]> git.pld-linux.org Git - packages/apache.git/blob - httpd-2.0.45-davfs.patch
- new metux patch
[packages/apache.git] / httpd-2.0.45-davfs.patch
1
2 Fix for http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14969
3
4 --- httpd-2.0.45/modules/dav/fs/dbm.c.davfs     2003-05-19 14:33:22.000000000 +0100
5 +++ httpd-2.0.45/modules/dav/fs/dbm.c   2003-05-19 14:33:33.000000000 +0100
6 @@ -599,7 +599,7 @@
7      ** we don't know the namespace yet, then add it to the map and to our
8      ** table of known namespaces.
9      */
10 -    pmap = apr_palloc(db->pool, namespaces->nelts * sizeof(*pmap));
11 +    m->ns_map = pmap = apr_palloc(db->pool, namespaces->nelts * sizeof(*pmap));
12      for (i = namespaces->nelts, puri = (const char **)namespaces->elts;
13           i-- > 0;
14           ++puri, ++pmap) {
15 @@ -627,7 +627,6 @@
16          }
17      }
18  
19 -    m->ns_map = pmap;
20      *mapping = m;
21      return NULL;
22  }
This page took 0.027197 seconds and 3 git commands to generate.