Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-09-25 14:48:01 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2019-09-25 14:48:01 +0300
commit65741d004ee91c5a710559ae4f1664f25009255e (patch)
treefd52b9ccacab37be8c3bca3ea6ba9e85516daadf /networking/telnet.c
parent11e024aa86f23a6dd86cdd58b8890756708cd708 (diff)
telnet: fix uninitialized variable bug
function old new delta telnet_main 1236 1238 +2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/telnet.c')
-rw-r--r--networking/telnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/telnet.c b/networking/telnet.c
index fa1628723..5c8805265 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -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);