{
apr_status_t sts;
- if (!client_shm) {
- return;
- }
-
/* Get access to rmm in child */
sts = apr_rmm_attach(&client_rmm,
NULL,
int bucket;
client_entry *entry, *prev = NULL;
-
- if (!key || !client_shm) return NULL;
+ if (!key) return NULL;
bucket = key % client_list->tbl_len;
entry = client_list->table[bucket];
int bucket;
client_entry *entry;
-
- if (!key || !client_shm) {
+ if (!key) {
return NULL;
}
const char *snc = resp->nonce_count;
char *endptr;
- if (conf->check_nc && !client_shm) {
- /* Shouldn't happen, but just in case... */
- ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01771)
- "cannot check nonce count without shared memory");
- return OK;
- }
-
- if (!conf->check_nc || !client_shm) {
+ if (!conf->check_nc) {
return OK;
}