Skip to content

Commit c419245

Browse files
committed
whitespace...
1 parent 18b9e18 commit c419245

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/pdo_sqlite/sqlite_driver.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ static zend_string* sqlite_handle_quoter(pdo_dbh_t *dbh, const zend_string *unqu
228228
}
229229

230230
if (UNEXPECTED(zend_str_has_nul_byte(unquoted))) {
231-
if (dbh->error_mode == PDO_ERRMODE_EXCEPTION) {
231+
if (dbh->error_mode == PDO_ERRMODE_EXCEPTION) {
232232
zend_throw_exception_ex(
233233
php_pdo_get_exception(), 0,
234234
"SQLite PDO::quote does not support null bytes");
235-
} else if (dbh->error_mode == PDO_ERRMODE_WARNING) {
235+
} else if (dbh->error_mode == PDO_ERRMODE_WARNING) {
236236
php_error_docref(NULL, E_WARNING,
237237
"SQLite PDO::quote does not support null bytes");
238-
}
239-
return NULL;
238+
}
239+
return NULL;
240240
}
241241

242242
quoted = safe_emalloc(2, ZSTR_LEN(unquoted), 3);

0 commit comments

Comments
 (0)