# HG changeset patch # User Matt Mackall # Date 1336809767 -7200 # Node ID 9e40bc4c1bdee81f41be17c20174a2aa168f0db7 # Parent fcb97d9a26cd25c9751062fc73f2ee43c7eb0f28 diffhelpers: harden testhunk diff -r fcb97d9a26cd -r 9e40bc4c1bde mercurial/diffhelpers.c --- a/mercurial/diffhelpers.c Sat May 12 16:10:01 2012 +0900 +++ b/mercurial/diffhelpers.c Sat May 12 10:02:47 2012 +0200 @@ -135,7 +135,7 @@ return NULL; alen = PyList_Size(a); blen = PyList_Size(b); - if (alen > blen - bstart) { + if (alen > blen - bstart || bstart < 0) { return Py_BuildValue("l", -1); } for (i = 0; i < alen; i++) {