summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-05-08 16:22:22 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-05-08 16:22:22 (GMT)
commit2d743e82dce913a91521214f3a3eade89bf14e86 (patch)
tree3b5b05bee0fe77240b44c68e9f0a2c8c402dc65d
parentce27ee1711888fbd54413f839d9807e1a89471b9 (diff)
parent435fd1ab8b987021ad8a7220a1f4fc89c3a4c872 (diff)
downloadtcl-2d743e82dce913a91521214f3a3eade89bf14e86.zip
tcl-2d743e82dce913a91521214f3a3eade89bf14e86.tar.gz
tcl-2d743e82dce913a91521214f3a3eade89bf14e86.tar.bz2
merge trunk
-rw-r--r--generic/tclBinary.c10
-rw-r--r--tests/binary.test12
2 files changed, 21 insertions, 1 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index 00551ce..183dee8 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.c
@@ -1743,7 +1743,15 @@ GetFormatSpec(
(*formatPtr)++;
*countPtr = BINARY_ALL;
} else if (isdigit(UCHAR(**formatPtr))) { /* INTL: digit */
- *countPtr = strtoul(*formatPtr, (char **) formatPtr, 10);
+ unsigned long int count;
+
+ errno = 0;
+ count = strtoul(*formatPtr, (char **) formatPtr, 10);
+ if (errno || (count > (unsigned long) INT_MAX)) {
+ *countPtr = INT_MAX;
+ } else {
+ *countPtr = (int) count;
+ }
} else {
*countPtr = BINARY_NOCOUNT;
}
diff --git a/tests/binary.test b/tests/binary.test
index 7738f69..1ee815b 100644
--- a/tests/binary.test
+++ b/tests/binary.test
@@ -1506,6 +1506,18 @@ test binary-37.9 {GetFormatSpec: numbers} {
binary scan $x f* bla
set bla
} {1.0 -1.0 2.0 -2.0 0.0}
+test binary-37.10 {GetFormatSpec: count overflow} {
+ binary scan x a[format %ld 0x7fffffff] r
+} 0
+test binary-37.11 {GetFormatSpec: count overflow} {
+ binary scan x a[format %ld 0x10000000] r
+} 0
+test binary-37.12 {GetFormatSpec: count overflow} {
+ binary scan x a[format %ld 0x100000000] r
+} 0
+test binary-37.13 {GetFormatSpec: count overflow} {
+ binary scan x a[format %lld 0x10000000000000000] r
+} 0
test binary-38.1 {FormatNumber: word alignment} {
set x [binary format c1s1 1 1]