mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
correcting these to be only docref's not docref1's
This commit is contained in:
parent
73557f5b52
commit
38a6873f20
1 changed files with 2 additions and 2 deletions
|
@ -2249,12 +2249,12 @@ try_and_get_another_connection:
|
||||||
list_entry new_le;
|
list_entry new_le;
|
||||||
|
|
||||||
if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) {
|
if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) {
|
||||||
php_error_docref1("odbc-exec" TSRMLS_CC, E_WARNING, "Too many open links (%d)", ODBCG(num_links));
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Too many open links (%d)", ODBCG(num_links));
|
||||||
efree(hashed_details);
|
efree(hashed_details);
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) {
|
if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) {
|
||||||
php_error_docref1(NULL TSRMLS_CC, E_WARNING,"Too many open persistent links (%d)", ODBCG(num_persistent));
|
php_error_docref(NULL TSRMLS_CC, E_WARNING,"Too many open persistent links (%d)", ODBCG(num_persistent));
|
||||||
efree(hashed_details);
|
efree(hashed_details);
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue