mirror of
https://github.com/apache/httpd.git
synced 2026-01-06 09:01:14 +03:00
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
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user