You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2021/11/21 17:06:30 UTC

svn commit: r1895238 - /apr/apr/branches/1.7.x/time/win32/time.c

Author: mturk
Date: Sun Nov 21 17:06:30 2021
New Revision: 1895238

URL: http://svn.apache.org/viewvc?rev=1895238&view=rev
Log:
Trivial fix. void functio has no return value

Modified:
    apr/apr/branches/1.7.x/time/win32/time.c

Modified: apr/apr/branches/1.7.x/time/win32/time.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.7.x/time/win32/time.c?rev=1895238&r1=1895237&r2=1895238&view=diff
==============================================================================
--- apr/apr/branches/1.7.x/time/win32/time.c (original)
+++ apr/apr/branches/1.7.x/time/win32/time.c Sun Nov 21 17:06:30 2021
@@ -55,7 +55,7 @@ static void SystemTimeToAprExpTime(apr_t
     {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334};
 
     if (tm->wMonth < 1 || tm->wMonth > 12)
-        return APR_EBADDATE;
+        return;
 
     /* Note; the caller is responsible for filling in detailed tm_usec,
      * tm_gmtoff and tm_isdst data when applicable.