git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] builtin/apply.c: remove impossible check
@ 2011-03-04 19:43 Nicolas Kaiser
  0 siblings, 0 replies; only message in thread
From: Nicolas Kaiser @ 2011-03-04 19:43 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

'n1' and 'n2' are unsigned of type size_t, and can never
be negative.

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

 builtin/apply.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/builtin/apply.c b/builtin/apply.c
index 14951da..6069377 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -248,9 +248,6 @@ static int fuzzy_matchlines(const char *s1, size_t n1,
 	const char *last2 = s2 + n2 - 1;
 	int result = 0;
 
-	if (n1 < 0 || n2 < 0)
-		return 0;
-
 	/* ignore line endings */
 	while ((*last1 == '\r') || (*last1 == '\n'))
 		last1--;
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-03-04 19:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-04 19:43 [PATCH] builtin/apply.c: remove impossible check 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).