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>2023-04-03 15:01:36 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2023-04-25 17:47:22 +0300
commit07bc5de67b2724a6ed9bb980f3439504b67e20ec (patch)
treeaa2c23079c88a6bf10230ea05bf141ec2b7a4e69
parent64e967fabb1cf6c190b76f51c69e0ecb5fa49be5 (diff)
ash: fix broken new mail detection
Mea culpa, in "Do not allocate stack string in padvance" commit (I left an extraneous "break" statement). function old new delta cmdloop 329 398 +69 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 18ccc1329..c15bce7ae 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11287,7 +11287,6 @@ chkmail(void)
if (!len)
break;
p = stackblock();
- break;
if (*p == '\0')
continue;
for (q = p; *q; q++)