summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-04-05 18:10:26 +0000
committerBill Nottingham <notting@redhat.com>2005-04-05 18:10:26 +0000
commit8bce9883e4d0eef86228dafa579f539694ebb31b (patch)
tree04daa71f74437fbd74cb49468b43483c8028bd46
parent79c68ff64cd50f71322e748b136a51073d5b3a03 (diff)
downloadinitscripts-8bce9883e4d0eef86228dafa579f539694ebb31b.tar.gz
initscripts-8bce9883e4d0eef86228dafa579f539694ebb31b.tar.xz
initscripts-8bce9883e4d0eef86228dafa579f539694ebb31b.zip
fix potential memory overread (#153685, <in-redhat@baka.org>)
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 0eec34ac..39b50613 100644
--- a/src/process.c
+++ b/src/process.c
@@ -188,7 +188,7 @@ int monitor(char *cmdname, int pid, int numfds, int *fds, int reexec, int quiet,
int bytesread = 0;
do {
- char *b, *buf=calloc(8192,sizeof(char));
+ char *b, *buf=calloc(8193,sizeof(char));
b = buf;
bytesread = read(pfds[y].fd,buf,8192);
if (bytesread==-1) {