telnet: fix uninitialized variable bug

function                                             old     new   delta
telnet_main                                         1236    1238      +2

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_31_stable
Denys Vlasenko 2019-09-25 13:48:01 +02:00
parent 49a8839638
commit be11940911
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ static void handle_net_input(int len)
{
byte c;
int i;
int cstart = cstart; /* for compiler */
int cstart = 0;
i = 0;
//bb_error_msg("[%u,'%.*s']", G.telstate, len, G.buf);