src/server/webdav/webdav.c

branch
webdav
changeset 220
2915b6c11aec
parent 217
8ed14d76db42
child 221
ff5826fc6a6c
equal deleted inserted replaced
219:dd6c155c082a 220:2915b6c11aec
300 while(davList) { 300 while(davList) {
301 // create WebdavPropfindRequest copy 301 // create WebdavPropfindRequest copy
302 WebdavPropfindRequest *pReq = pool_malloc( 302 WebdavPropfindRequest *pReq = pool_malloc(
303 pool, 303 pool,
304 sizeof(WebdavPropfindRequest)); 304 sizeof(WebdavPropfindRequest));
305 memcpy(propfind, pReq, sizeof(WebdavPropfindRequest)); 305 memcpy(pReq, propfind, sizeof(WebdavPropfindRequest));
306 // use new plist after previous init (or orig. plist in the first run) 306 // use new plist after previous init (or orig. plist in the first run)
307 pReq->properties = newProp; 307 pReq->properties = newProp;
308 pReq->propcount = newPropCount; 308 pReq->propcount = newPropCount;
309 309
310 // add new WebdavPropfindRequest object to list for later use 310 // add new WebdavPropfindRequest object to list for later use

mercurial