mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
initialize this one to be safe
This commit is contained in:
parent
3be27ecc78
commit
43698d6dbb
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ static int stream_array_emulate_read_fd_set(zval *stream_array TSRMLS_DC)
|
|||
Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec */
|
||||
PHP_FUNCTION(stream_select)
|
||||
{
|
||||
zval *r_array, *w_array, *e_array, *sec;
|
||||
zval *r_array, *w_array, *e_array, *sec = NULL;
|
||||
struct timeval tv;
|
||||
struct timeval *tv_p = NULL;
|
||||
fd_set rfds, wfds, efds;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue