summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/channels.c b/channels.c
index 8069cf1f9..3fe836aad 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.345 2015/06/30 05:23:25 djm Exp $ */ 1/* $OpenBSD: channels.c,v 1.346 2015/06/30 05:25:07 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2641,7 +2641,7 @@ channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
2641{ 2641{
2642 Channel *c; 2642 Channel *c;
2643 int id; 2643 int id;
2644 u_int adjust; 2644 u_int adjust, tmp;
2645 2645
2646 if (!compat20) 2646 if (!compat20)
2647 return 0; 2647 return 0;
@@ -2657,7 +2657,10 @@ channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
2657 adjust = packet_get_int(); 2657 adjust = packet_get_int();
2658 packet_check_eom(); 2658 packet_check_eom();
2659 debug2("channel %d: rcvd adjust %u", id, adjust); 2659 debug2("channel %d: rcvd adjust %u", id, adjust);
2660 c->remote_window += adjust; 2660 if ((tmp = c->remote_window + adjust) < c->remote_window)
2661 fatal("channel %d: adjust %u overflows remote window %u",
2662 id, adjust, c->remote_window);
2663 c->remote_window = tmp;
2661 return 0; 2664 return 0;
2662} 2665}
2663 2666