1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix potentially uninitialized warning on release build

This commit is contained in:
Ilija Tovilo
2023-11-15 13:14:55 +01:00
parent bef97fb4a5
commit 5aeada0ee3

View File

@@ -513,7 +513,7 @@ static int pdo_odbc_handle_factory(pdo_dbh_t *dbh, zval *driver_options) /* {{{
*db_end = '\0';
}
char *uid = NULL, *pwd = NULL, *dsn;
char *uid = NULL, *pwd = NULL, *dsn = NULL;
bool should_quote_uid, should_quote_pwd;
size_t new_dsn_size;