aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lj_strscan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_strscan.c b/src/lj_strscan.c
index 11abd526..3863ff1c 100644
--- a/src/lj_strscan.c
+++ b/src/lj_strscan.c
@@ -443,6 +443,7 @@ StrScanFmt lj_strscan_scan(const uint8_t *p, MSize len, TValue *o,
443 443
444 /* Handle decimal point. */ 444 /* Handle decimal point. */
445 if (dp) { 445 if (dp) {
446 if (base == 2) return STRSCAN_ERROR;
446 fmt = STRSCAN_NUM; 447 fmt = STRSCAN_NUM;
447 if (dig) { 448 if (dig) {
448 ex = (int32_t)(dp-(p-1)); dp = p-1; 449 ex = (int32_t)(dp-(p-1)); dp = p-1;