From c68038effed2f1031848330cca46e85fc79e3ab2 Mon Sep 17 00:00:00 2001 From: David Barr Date: Fri, 1 Jun 2012 00:41:29 +1000 Subject: vcs-svn: suppress a signed/unsigned comparison warning The preceding code checks that view->max_off is nonnegative and (off + width) fits in an off_t, so this code is already safe. Signed-off-by: David Barr Signed-off-by: Jonathan Nieder diff --git a/vcs-svn/sliding_window.c b/vcs-svn/sliding_window.c index ec2707c..f11d490 100644 --- a/vcs-svn/sliding_window.c +++ b/vcs-svn/sliding_window.c @@ -54,7 +54,7 @@ int move_window(struct sliding_view *view, off_t off, size_t width) return -1; if (off < view->off || off + width < view->off + view->width) return error("invalid delta: window slides left"); - if (view->max_off >= 0 && view->max_off < off + width) + if (view->max_off >= 0 && view->max_off < off + (off_t) width) return error("delta preimage ends early"); file_offset = view->off + view->buf.len; -- cgit v0.10.2-6-g49f6