apr_shm_remove() rather than the unsufficient apr_file_remove().
PR: 27189
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105247
13f79535-47bb-0310-9956-
ffa450edef68
/* The shared memory file must not exist before we create the
* segment. */
- apr_file_remove(fname, pool); /* ignore errors */
+ apr_shm_remove(fname, pool); /* ignore errors */
rv = apr_shm_create(&ap_scoreboard_shm, scoreboard_size, fname, pool);
if (rv != APR_SUCCESS) {