File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 21
21
- Fixed possible crash in mssql_fetch_batch(). (Kalle)
22
22
- Fixed inconsistent backlog default value (-1) in FPM on many systems. (fat)
23
23
24
+ - Fixed bug #52843 (Segfault when optional parameters are not passed in to
25
+ mssql_connect). (Felipe)
24
26
- Fixed bug #52827 (cURL leaks handle and causes assertion error
25
27
(CURLOPT_STDERR)). (Gustavo)
26
28
- Fixed bug #52786 (PHP should reset section to [PHP] after ini sections).
Original file line number Diff line number Diff line change @@ -539,7 +539,7 @@ PHP_MINFO_FUNCTION(mssql)
539
539
static void php_mssql_do_connect (INTERNAL_FUNCTION_PARAMETERS , int persistent )
540
540
{
541
541
char * host = NULL , * user = NULL , * passwd = NULL ;
542
- int host_len , user_len , passwd_len ;
542
+ int host_len = 0 , user_len = 0 , passwd_len = 0 ;
543
543
zend_bool new_link = 0 ;
544
544
char * hashed_details ;
545
545
int hashed_details_length ;
You can’t perform that action at this time.
0 commit comments