Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
transport-helper.c: fix check for (size_t < 0)
author
Nicolas Kaiser
<nikai@nikai.net>
Fri, 4 Mar 2011 23:16:26 +0000
(
00:16
+0100)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 9 Mar 2011 05:36:12 +0000
(21:36 -0800)
'bytes' is of type size_t which is unsigned thus 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>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
raw
|
patch
| inline |
side by side
(from:
803dbdb
)
No differences found