2014-01-13 16:34:45

by Andrei Emeltchenko

[permalink] [raw]
Subject: [PATCH] scotest: Use correct buffer size

From: Andrei Emeltchenko <[email protected]>

---
tools/scotest.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/scotest.c b/tools/scotest.c
index 69150b1..227287d 100644
--- a/tools/scotest.c
+++ b/tools/scotest.c
@@ -255,7 +255,7 @@ static void dump_mode(int sk)
strerror(errno), errno);

if (defer_setup) {
- len = read(sk, buf, sizeof(buf));
+ len = read(sk, buf, data_size);
if (len < 0)
syslog(LOG_ERR, "Initial read error: %s (%d)",
strerror(errno), errno);
@@ -283,7 +283,7 @@ static void recv_mode(int sk)
strerror(errno), errno);

if (defer_setup) {
- len = read(sk, buf, sizeof(buf));
+ len = read(sk, buf, data_size);
if (len < 0)
syslog(LOG_ERR, "Initial read error: %s (%d)",
strerror(errno), errno);
--
1.8.3.2



2014-01-14 11:25:54

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] scotest: Use correct buffer size

Hi Andrei,

On Mon, Jan 13, 2014, Andrei Emeltchenko wrote:
> ---
> tools/scotest.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)

Applied. Thanks.

Johan