aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-display.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-09-28 18:39:48 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-09-28 18:39:48 +0800
commit7670176dd23a4aee7875ea6c20f480d5f3c5a4e4 (patch)
tree72fd501bfb79f87c5bebf51780b0854a7f0139a4 /mail/em-format-html-display.c
parentc8bc7fc32c0cec40ca5f547e5b01d02985f37510 (diff)
downloadgsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar.gz
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar.bz2
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar.lz
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar.xz
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.tar.zst
gsoc2013-evolution-7670176dd23a4aee7875ea6c20f480d5f3c5a4e4.zip
Define localtime_r() for Win32 using localtime() (which is thread-safe in
2005-09-28 Tor Lillqvist <tml@novell.com> * em-format-html-display.c: Define localtime_r() for Win32 using localtime() (which is thread-safe in Microsoft's C library). svn path=/trunk/; revision=30398
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r--mail/em-format-html-display.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index 0e054f1dca..d6719d361a 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -92,6 +92,16 @@
#include "e-attachment.h"
#include "e-attachment-bar.h"
+#ifdef G_OS_WIN32
+/* Undefine the similar macro from <pthread.h>,it doesn't check if
+ * localtime() returns NULL.
+ */
+#undef localtime_r
+
+/* The localtime() in Microsoft's C library is MT-safe */
+#define localtime_r(tp,tmp) (localtime(tp)?(*(tmp)=*localtime(tp),(tmp)):0)
+#endif
+
#define d(x)
#define EFHD_TABLE_OPEN "<table>"