diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2024-04-09 06:49:59 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2024-04-09 06:49:59 +0000 |
commit | 0e2a2491a3bf2f45f65667f75b7eb0d68bf321f8 (patch) | |
tree | 72b2f63dc3b65c1d74edb6e422c234e338d043c7 /lang/tcl85/files/patch-bug214205 | |
parent | Mk/Uses/tcl.mk: remove support for Tcl/Tk 8.5 (diff) |
lang/tcl85, x11-toolkits/tk85: remove, EOL
Diffstat (limited to 'lang/tcl85/files/patch-bug214205')
-rw-r--r-- | lang/tcl85/files/patch-bug214205 | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lang/tcl85/files/patch-bug214205 b/lang/tcl85/files/patch-bug214205 deleted file mode 100644 index d3176230cc9e..000000000000 --- a/lang/tcl85/files/patch-bug214205 +++ /dev/null @@ -1,16 +0,0 @@ ---- ../generic/tclListObj.c.orig 2021-09-10 06:40:10 UTC -+++ ../generic/tclListObj.c -@@ -846,11 +846,8 @@ - } - if (count < 0) { - count = 0; -- } else if (numElems < first+count || first+count < 0) { -- /* -- * The 'first+count < 0' condition here guards agains integer -- * overflow in determining 'first+count' -- */ -+ } else if (first > INT_MAX - count /* Handle integer overflow */ -+ || numElems < first+count) { - count = numElems - first; - } - |