mirror of
https://github.com/apache/httpd.git
synced 2025-07-23 01:08:51 +00:00
mod_slotmem_shm: follow up tp r1822509.
Please buildbot (and incidentally users of older APR) by using apr_shm_remove() instead of the new(er) apr_shm_delete(). [Reverted by r1831868] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1822511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -317,11 +317,10 @@ static apr_status_t cleanup_slotmem(void *is_startup)
|
||||
}
|
||||
if (unlink) {
|
||||
/* Some systems may require the descriptor to be closed before
|
||||
* unlink, thus call destroy() first (this won't free mem->shm
|
||||
* so it's safe to call delete() afterward).
|
||||
* unlink, thus call destroy() first.
|
||||
*/
|
||||
apr_shm_destroy(mem->shm);
|
||||
apr_shm_delete(mem->shm);
|
||||
apr_shm_remove(mem->name, mem->pool);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user