Commit 112cba0d authored by Nick Kew's avatar Nick Kew
Browse files

Log a message if we try to prepare a statement not attached to a hostname.

This fix supplements r432560 (don't crash).


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@432562 13f79535-47bb-0310-9956-ffa450edef68
parent c523a39e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -151,6 +151,8 @@ DBD_DECLARE_NONSTD(void) ap_dbd_prepare(server_rec *s, const char *query,
    const char *key = s->server_hostname;
    if (key == NULL) {
        key = default_hostname;
        ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s,
                     "DBD: ServerName should be set before declaring any prepared statements");
    }
    prepared->label = label;
    prepared->query = query;