nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 628b8661ef57c9d5badd1a808482f88a31c4da4d
parent 0cbc0ef8319a4b077cf1abc93c498d53eecb68ef
Author: Rolf Eike Beer <eike@sf-mail.de>
Date:   Tue, 12 May 2020 20:06:38 +0200

fix possible signed integer overflow in commands() (CVE-2005-1514)

Fix it as suggested by the Qualys Security Advisory team.

Diffstat:
Mcommands.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/commands.c b/commands.c @@ -10,16 +10,17 @@ int commands(ss,c) substdio *ss; struct commands *c; { - int i; + unsigned int i; char *arg; for (;;) { if (!stralloc_copys(&cmd,"")) return -1; for (;;) { + int j; if (!stralloc_readyplus(&cmd,1)) return -1; - i = substdio_get(ss,cmd.s + cmd.len,1); - if (i != 1) return i; + j = substdio_get(ss,cmd.s + cmd.len,1); + if (j != 1) return j; if (cmd.s[cmd.len] == '\n') break; ++cmd.len; }