https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=453b6d17bf0581e55258c5eb6dc7afbad1927cab

commit 453b6d17bf0581e55258c5eb6dc7afbad1927cab
Author: Corinna Vinschen <[email protected]>
Date:   Wed Apr 29 09:51:52 2020 +0200

    localtime define _DIAGASSERT

Diff:
---
 winsup/cygwin/localtime.cc | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/winsup/cygwin/localtime.cc b/winsup/cygwin/localtime.cc
index dccaa623a..ebb2d42f0 100644
--- a/winsup/cygwin/localtime.cc
+++ b/winsup/cygwin/localtime.cc
@@ -73,6 +73,8 @@ static char   privatehid[] = "@(#)private.h   7.48";
 #include "unistd.h"    /* for F_OK and R_OK */
 #if 0
 #include <assert.h>
+#else
+#define _DIAGASSERT(e)
 #endif
 
 /* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX.  */
@@ -786,7 +788,7 @@ tzload(timezone_t sp, const char *name, const int doextend)
                                        sp->types[i - 1] = 1;
                                        sp->ats[timecnt++] = time_t_min;
                                }
-                               //_DIAGASSERT(__type_fit(time_t, at));
+                               _DIAGASSERT(__type_fit(time_t, at));
                                sp->ats[timecnt++] = (time_t)at;
                        }
                        p += stored;
@@ -1988,7 +1990,7 @@ timesub(const timezone_t sp, const time_t *const timep,
                if (! ((! TYPE_SIGNED(time_t) || INT_MIN <= tdelta)
                       && tdelta <= INT_MAX))
                        return NULL;
-               //_DIAGASSERT(__type_fit(int, tdelta));
+               _DIAGASSERT(__type_fit(int, tdelta));
                idelta = (int)tdelta;
                if (idelta == 0)
                        idelta = (tdays < 0) ? -1 : 1;

Reply via email to