From 0977c29196aa73711cbac2a275ba1b84687c94a4 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 20 Feb 2008 00:46:09 +0000 Subject: [PATCH] notice an integer overflow if we ever get source files with more than 65k lines in them. also pointed out by veracode. svn:r13606 --- src/or/connection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/or/connection.c b/src/or/connection.c index f7ecdea0fc..5f80872c0f 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -600,6 +600,7 @@ _connection_mark_for_close(connection_t *conn, int line, const char *file) { assert_connection_ok(conn,0); tor_assert(line); + tor_assert(line < 1<<16); /* marked_for_close can only fit a uint16_t. */ tor_assert(file); if (conn->marked_for_close) {