Ensure that the file-based shm file is removed...
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1541208 13f79535-47bb-0310-9956-
ffa450edef68
store_slotmem(next);
}
if (next->fbased) {
+ const char *name;
apr_shm_remove(next->name, next->gpool);
+ name = slotmem_filename(next->gpool, next->name, 0);
+ if (name) {
+ apr_file_remove(name, next->gpool);
+ }
}
apr_shm_destroy((apr_shm_t *)next->shm);
next = next->next;