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:
Yann Ylavic
2018-01-29 14:43:21 +00:00
parent ea253a6373
commit c75bda95cc

View File

@ -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);
}
}