We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138ce33 commit 5b34ab6Copy full SHA for 5b34ab6
serverloop.c
@@ -885,11 +885,12 @@ collect_children(void)
885
char *inittermseq = "\033[20l\033[?7h\0" ; // no LFtoCRLF no AUTOWRAPON
886
Channel *c=channel_by_id ( s->chanid );
887
buffer_append(&c->input, inittermseq, strlen(inittermseq));
888
- channel_output_poll();
+ packet_write_poll();
889
}
890
session_close_by_pid(s->pid, status);
891
892
- CloseHandle(process);
+ if (s->pid)
893
+ CloseHandle(process);
894
int WSHELPDelChildToWatch (HANDLE processtowatch);
895
WSHELPDelChildToWatch (process); // take the process off from watch list in select mux
896
0 commit comments