Skip to content

Commit 280486d

Browse files
committed
ext/pdo_odbc: Do not populate message if there is no driver error
1 parent ac8d1ac commit 280486d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

ext/pdo/tests/bug_38253.phpt

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ PDOTest::dropTableIfExists($db, "test38253");
4343
--EXPECTF--
4444
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch class specified in %s on line %d
4545

46-
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error%s on line %d
46+
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error in %s on line %d
4747
array(0) {
4848
}
4949

5050
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch function specified in %s on line %d
5151

52-
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error%s on line %d
52+
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error in %s on line %d
5353
array(0) {
5454
}
5555

5656
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch-into object specified. in %s on line %d
5757

58-
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error%s on line %d
58+
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error in %s on line %d
5959
array(0) {
6060
}

ext/pdo_odbc/odbc_driver.c

+8-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@ static void pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *in
4141
einfo = &S->einfo;
4242
}
4343

44-
message = strpprintf(0, "%s (%s[%ld] at %s:%d)",
45-
einfo->last_err_msg,
46-
einfo->what, (long) einfo->last_error,
47-
einfo->file, einfo->line);
44+
if (einfo->last_err_msg != NULL) {
45+
message = strpprintf(0, "%s (%s[%ld] at %s:%d)",
46+
einfo->last_err_msg,
47+
einfo->what, (long) einfo->last_error,
48+
einfo->file, einfo->line);
49+
} else {
50+
message = ZSTR_EMPTY_ALLOC();
51+
}
4852

4953
add_next_index_long(info, einfo->last_error);
5054
add_next_index_str(info, message);

0 commit comments

Comments
 (0)