git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] transport-helper.c: fix check for size_t < 0
@ 2011-03-04 19:28 Nicolas Kaiser
  2011-03-04 20:20 ` Piotr Krukowiecki
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Kaiser @ 2011-03-04 19:28 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

'bytes' is unsigned of type size_t, and can't be negative.
But the assigned write() returns ssize_t, and -1 on error.
For testing < 0, 'bytes' needs to be of a signed type.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
---
Testsuite did not regress at my place.

 transport-helper.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/transport-helper.c b/transport-helper.c
index 4e4754c..710b6f1 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -973,7 +973,7 @@ static int udt_do_read(struct unidirectional_transfer *t)
  */
 static int udt_do_write(struct unidirectional_transfer *t)
 {
-	size_t bytes;
+	int bytes;
 
 	if (t->bufuse == 0)
 		return 0;	/* Nothing to write. */
@@ -989,7 +989,7 @@ static int udt_do_write(struct unidirectional_transfer *t)
 		if (t->bufuse)
 			memmove(t->buf, t->buf + bytes, t->bufuse);
 		transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
-			(int)bytes, t->dest_name, (int)t->bufuse);
+			bytes, t->dest_name, (int)t->bufuse);
 	}
 	return 0;
 }
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] transport-helper.c: fix check for size_t < 0
  2011-03-04 19:28 [PATCH] transport-helper.c: fix check for size_t < 0 Nicolas Kaiser
@ 2011-03-04 20:20 ` Piotr Krukowiecki
  2011-03-04 23:16   ` [PATCH] transport-helper.c: fix check for size_t < 0 v2 Nicolas Kaiser
  0 siblings, 1 reply; 3+ messages in thread
From: Piotr Krukowiecki @ 2011-03-04 20:20 UTC (permalink / raw)
  To: Nicolas Kaiser; +Cc: Junio C Hamano, git

On Fri, Mar 4, 2011 at 8:28 PM, Nicolas Kaiser <nikai@nikai.net> wrote:
> 'bytes' is unsigned of type size_t, and can't be negative.
> But the assigned write() returns ssize_t, and -1 on error.
> For testing < 0, 'bytes' needs to be of a signed type.

You are right that, but the fix should be to use ssize_t not  plain "int".
(udt_do_read() correctly uses ssize_t)

Not providing patch since the change is trivial.

>
> Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
> ---
> Testsuite did not regress at my place.
>
>  transport-helper.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/transport-helper.c b/transport-helper.c
> index 4e4754c..710b6f1 100644
> --- a/transport-helper.c
> +++ b/transport-helper.c
> @@ -973,7 +973,7 @@ static int udt_do_read(struct unidirectional_transfer *t)
>  */
>  static int udt_do_write(struct unidirectional_transfer *t)
>  {
> -       size_t bytes;
> +       int bytes;
>
>        if (t->bufuse == 0)
>                return 0;       /* Nothing to write. */
> @@ -989,7 +989,7 @@ static int udt_do_write(struct unidirectional_transfer *t)
>                if (t->bufuse)
>                        memmove(t->buf, t->buf + bytes, t->bufuse);
>                transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
> -                       (int)bytes, t->dest_name, (int)t->bufuse);
> +                       bytes, t->dest_name, (int)t->bufuse);
>        }
>        return 0;
>  }
> --
> 1.7.3.4


-- 
Piotrek

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] transport-helper.c: fix check for size_t < 0 v2
  2011-03-04 20:20 ` Piotr Krukowiecki
@ 2011-03-04 23:16   ` Nicolas Kaiser
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Kaiser @ 2011-03-04 23:16 UTC (permalink / raw)
  To: Piotr Krukowiecki; +Cc: Junio C Hamano, git

'bytes' is unsigned of type size_t, and can't be negative.
But the assigned write() returns ssize_t, and -1 on error.
For testing < 0, 'bytes' needs to be of a signed type.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
---
* Piotr Krukowiecki <piotr.krukowiecki@gmail.com>:
> You are right that, but the fix should be to use ssize_t not  plain "int".
> (udt_do_read() correctly uses ssize_t)

Indeed, thanks. Here's a version with ssize_t.
Testsuite did not regress at my place.

 transport-helper.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/transport-helper.c b/transport-helper.c
index 4e4754c..ba06b70 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -973,7 +973,7 @@ static int udt_do_read(struct unidirectional_transfer *t)
  */
 static int udt_do_write(struct unidirectional_transfer *t)
 {
-	size_t bytes;
+	ssize_t bytes;
 
 	if (t->bufuse == 0)
 		return 0;	/* Nothing to write. */
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-03-04 23:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-04 19:28 [PATCH] transport-helper.c: fix check for size_t < 0 Nicolas Kaiser
2011-03-04 20:20 ` Piotr Krukowiecki
2011-03-04 23:16   ` [PATCH] transport-helper.c: fix check for size_t < 0 v2 Nicolas Kaiser

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).