We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce534c6 commit bae78c6Copy full SHA for bae78c6
ext/pdo_firebird/firebird_statement.c
@@ -172,7 +172,7 @@ static int firebird_stmt_execute(pdo_stmt_t *stmt) /* {{{ */
172
if (result_size > sizeof(result)) {
173
goto error;
174
}
175
- while (result[i] != isc_info_end && i < result_size) {
+ while (i < result_size && result[i] != isc_info_end) {
176
short len = (short) isc_vax_integer(&result[i + 1], 2);
177
if (len != 1 && len != 2 && len != 4) {
178
0 commit comments