mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-02 19:50:12 -05:00
Merge ldisc_send fix from 'pre-0.83'.
This commit is contained in:
commit
6ffb0e067f
4
ldisc.c
4
ldisc.c
@ -272,8 +272,10 @@ void ldisc_send(Ldisc *ldisc, const void *vbuf, int len, bool interactive)
|
|||||||
*/
|
*/
|
||||||
len = strlen(vbuf);
|
len = strlen(vbuf);
|
||||||
type = DEDICATED;
|
type = DEDICATED;
|
||||||
} else {
|
} else if (len > 0) {
|
||||||
type = interactive ? NORMAL : NONINTERACTIVE;
|
type = interactive ? NORMAL : NONINTERACTIVE;
|
||||||
|
} else {
|
||||||
|
return; /* nothing to do anyway */
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user