[tor-commits] [tor/maint-0.2.9] Check for micro < 0, rather than checking "minor" twice.

nickm at torproject.org nickm at torproject.org
Fri Feb 17 16:33:22 UTC 2017


commit 67cec7578cab40ce43b54d4dfc1370894b91d28f
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Feb 17 11:31:39 2017 -0500

    Check for micro < 0, rather than checking "minor" twice.
    
    Bug found with clang scan-build.  Fixes bug on f63e06d3dc6757d.
    Bug not present in any released Tor.
---
 src/or/routerparse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 7d9769b..2ee0d27 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -5551,7 +5551,7 @@ tor_version_parse_platform(const char *platform,
   if (strict) {
     if (router_version->major < 0 ||
         router_version->minor < 0 ||
-        router_version->minor < 0 ||
+        router_version->micro < 0 ||
         router_version->patchlevel < 0 ||
         router_version->svn_revision < 0) {
       return -1;



More information about the tor-commits mailing list