]> git.sesse.net Git - vlc/commitdiff
compat: fix localtime_r() replacement
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 16 Mar 2015 17:20:44 +0000 (19:20 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 16 Mar 2015 17:20:44 +0000 (19:20 +0200)
 - Do not clobber thread-specific state on Windows
 - Be thread-safe on non-Windows

compat/localtime_r.c

index b19f68df5683f55419b9757f800621949d9078f3..67da422b02aaba9af2879ca45d73327e6236ca80 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * localtime_r.c: POSIX localtime_r() replacement
  *****************************************************************************
- * Copyright © 1998-2008 VLC authors and VideoLAN
+ * Copyright © 1998-2015 VLC authors and VideoLAN
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published by
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#if (__STDC_VERSION__ >= 201112L)
+# define __STDC_WANT_LIB_EXT1__ 1
+#endif
 #ifdef HAVE_CONFIG_H
 # include <config.h>
 #endif
 
+#include <errno.h>
 #include <time.h>
 
 /* If localtime_r() is not provided, we assume localtime() uses
  * thread-specific storage. */
 struct tm *localtime_r (const time_t *timep, struct tm *result)
 {
-    struct tm *s = localtime (timep);
-    if (s == NULL)
-        return NULL;
-
-    *result = *s;
-    return result;
+#if (__STDC_VERSION__ >= 201112L)
+    return localtime_s(timep, result);
+#elif defined (_WIN32)
+    return ((errno = localtime_s(result, timep)) == 0) ? result : NULL;
+#else
+# warning localtime_r() not implemented!
+    return gmtime_r(timep, result);
+#endif
 }