mirror of git://anongit.mindrot.org/openssh.git
avoid Wuninitialized false positive in gcc-12ish
This commit is contained in:
parent
9d95252911
commit
03d94a4720
|
@ -369,7 +369,7 @@ channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
|
|||
int nonblock)
|
||||
{
|
||||
struct ssh_channels *sc = ssh->chanctxt;
|
||||
u_int i, found;
|
||||
u_int i, found = 0;
|
||||
Channel *c;
|
||||
int r;
|
||||
|
||||
|
|
Loading…
Reference in New Issue