namespace httpd segfaults. PR 52559 [Diego Santa Cruz
<diego.santaCruz spinetix.com>]
- *) mod_dav: PROPPATCH delete (svn propdel) silently discards errors.
- PR 53525 [Arwin Arni <arwin collab.net>]
-
*) mod_dav: Ensure URI is correctly uriencoded on return. PR 54611
[Timothy Wood <tjw omnigroup.com>]
else if (ctx->operation == DAV_PROP_OP_DELETE) {
/*
- ** Delete the property.
+ ** Delete the property. Ignore errors -- the property is there, or
+ ** we are deleting it for a second time.
*/
- err = (*propdb->db_hooks->remove)(propdb->db, &name);
+ /* ### but what about other errors? */
+ (void) (*propdb->db_hooks->remove)(propdb->db, &name);
}
}