From cadd3d24ea273e06ebadb3af43dce1622df1d33a Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 4 Dec 2016 15:54:34 +0100 Subject: [PATCH] Fix sec_etc overflow --- src/status.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/status.c b/src/status.c index 4f95ada37..12e94e51f 100644 --- a/src/status.c +++ b/src/status.c @@ -923,12 +923,10 @@ char *status_get_time_estimated_absolute (const hashcat_ctx_t *hashcat_ctx) } // we need this check to avoid integer overflow - #if defined (_WIN) if (sec_etc > 100000000) { sec_etc = 100000000; } - #endif time_t now;