summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch')
-rw-r--r--meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch b/meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch
new file mode 100644
index 0000000000..1859992838
--- /dev/null
+++ b/meta/recipes-devtools/tcltk8/tcl8/0001-generic-tcl.h-use-Tcl_WideInt-for-seconds-in-Tcl_Tim.patch
@@ -0,0 +1,33 @@
1From ff508f2e6786df697876140f21855ecb92a3ed36 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Fri, 18 Aug 2023 12:25:11 +0200
4Subject: [PATCH] generic/tcl.h: use Tcl_WideInt for seconds in Tcl_Time
5
6This ensures the value will not overflow, particularly on 32 bit systems
7in 2038, where long will.
8
9This patch was proposed at https://core.tcl-lang.org/tcl/tktview/86dd172271
10Upstream was generally supportive of the fix, but they merged a much more
11elaborate version of it for tcl 9.x (released in 9.0.0), and declined
12to merge it into 8.x due to ABI breakage (sadly this change is in a public header).
13But we can carry the fix downstream.
14
15Upstream-Status: Inappropriate [see above]
16Signed-off-by: Alexander Kanavin <alex@linutronix.de>
17---
18 generic/tcl.h | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/generic/tcl.h b/generic/tcl.h
22index 3a4622e..6204c57 100644
23--- a/generic/tcl.h
24+++ b/generic/tcl.h
25@@ -1418,7 +1418,7 @@ typedef enum {
26 */
27
28 typedef struct Tcl_Time {
29- long sec; /* Seconds. */
30+ Tcl_WideInt sec; /* Seconds. */
31 long usec; /* Microseconds. */
32 } Tcl_Time;
33