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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user