Skip to content

Commit bdc5336

Browse files
committed
redis.c:2388:26: warning: 'timeout' may be used uninitialized in this function
1 parent 2c907f2 commit bdc5336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2275,7 +2275,7 @@ PHPAPI int generic_multiple_args_cmd(INTERNAL_FUNCTION_PARAMETERS, char *keyword
22752275
int cmd_len, *keys_len, *keys_to_free;
22762276
int i, j, argc = ZEND_NUM_ARGS(), real_argc = 0;
22772277
int single_array = 0;
2278-
int timeout;
2278+
int timeout = 0;
22792279
int pos;
22802280
int array_size;
22812281

0 commit comments

Comments
 (0)