mercurial/parsers.c
changeset 20110 40b7c6e4b993
parent 19728 3daabd2da78b
child 20111 9bfa86746c9c
--- a/mercurial/parsers.c	Mon Nov 25 16:15:44 2013 -0600
+++ b/mercurial/parsers.c	Tue Nov 19 23:49:11 2013 +0530
@@ -927,8 +927,13 @@
 static int nt_init(indexObject *self)
 {
 	if (self->nt == NULL) {
+		if (self->raw_length > INT_MAX) {
+			PyErr_SetString(PyExc_ValueError, "overflow in nt_init");
+			return -1;
+		}
 		self->ntcapacity = self->raw_length < 4
-			? 4 : self->raw_length / 2;
+			? 4 : (int)self->raw_length / 2;
+
 		self->nt = calloc(self->ntcapacity, sizeof(nodetree));
 		if (self->nt == NULL) {
 			PyErr_NoMemory();