https://bz.apache.org/bugzilla/show_bug.cgi?id=59984

            Bug ID: 59984
           Summary: Add log message when apr_hash_get fails
           Product: Apache httpd-2
           Version: 2.5-HEAD
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: All
          Assignee: [email protected]
          Reporter: [email protected]

Created attachment 34130
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=34130&action=edit
Add log message when apr_hash_get fails

Function apr_hash_get may fail. The majority of calls have checked the return
value and printed log message like the following code snippet, while the others
have not. Those unchecked ones probably need logs too (see attachment).

/* httpd-2.4.10/modules/aaa/mod_authz_dbd.c:214:10 */
    query = apr_hash_get(dbd->prepared, cfg->query, APR_HASH_KEY_STRING);
    if (query == NULL) {
        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01650)
                      "Error retrieving query for dbd-group!");
        return HTTP_INTERNAL_SERVER_ERROR;
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to