View | Details | Raw Unified | Return to bug 1379 | Differences between
and this patch

Collapse All | Expand All

(-)clientloop.c (+6 lines)
Lines 940-945 Link Here
940
	u_short cancel_port;
940
	u_short cancel_port;
941
	Forward fwd;
941
	Forward fwd;
942
942
943
	memset(&fwd, 0, sizeof(fwd));
944
943
	leave_raw_mode();
945
	leave_raw_mode();
944
	handler = signal(SIGINT, SIG_IGN);
946
	handler = signal(SIGINT, SIG_IGN);
945
	cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
947
	cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
Lines 1039-1044 Link Here
1039
	enter_raw_mode();
1041
	enter_raw_mode();
1040
	if (cmd)
1042
	if (cmd)
1041
		xfree(cmd);
1043
		xfree(cmd);
1044
	if (fwd.listen_host != NULL)
1045
		xfree(fwd.listen_host);
1046
	if (fwd.connect_host != NULL)
1047
		xfree(fwd.connect_host);
1042
}
1048
}
1043
1049
1044
/* process the characters one by one */
1050
/* process the characters one by one */

Return to bug 1379