libidav/webdav.c

changeset 223
cbbdf207e67e
parent 205
bf756f6c3581
child 228
c0175372c35d
equal deleted inserted replaced
222:7b73058d782e 223:cbbdf207e67e
306 resource = NULL; 306 resource = NULL;
307 } 307 }
308 308
309 ucx_buffer_free(rqbuf); 309 ucx_buffer_free(rqbuf);
310 ucx_buffer_free(rpbuf); 310 ucx_buffer_free(rpbuf);
311 while(proplist) {
312 DavProperty *p = proplist->data;
313 free(p->name);
314 free(p);
315 UcxList *next = proplist->next;
316 free(proplist);
317 proplist = next;
318 }
311 319
312 return resource; 320 return resource;
313 } 321 }
314 322
315 323

mercurial