aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lobject.c b/lobject.c
index f8ea917a..0e504be0 100644
--- a/lobject.c
+++ b/lobject.c
@@ -258,7 +258,7 @@ static const char *l_str2d (const char *s, lua_Number *result) {
258 if (endptr == NULL) { /* failed? may be a different locale */ 258 if (endptr == NULL) { /* failed? may be a different locale */
259 char buff[L_MAXLENNUM + 1]; 259 char buff[L_MAXLENNUM + 1];
260 const char *pdot = strchr(s, '.'); 260 const char *pdot = strchr(s, '.');
261 if (strlen(s) > L_MAXLENNUM || pdot == NULL) 261 if (pdot == NULL || strlen(s) > L_MAXLENNUM)
262 return NULL; /* string too long or no dot; fail */ 262 return NULL; /* string too long or no dot; fail */
263 strcpy(buff, s); /* copy string to buffer */ 263 strcpy(buff, s); /* copy string to buffer */
264 buff[pdot - s] = lua_getlocaledecpoint(); /* correct decimal point */ 264 buff[pdot - s] = lua_getlocaledecpoint(); /* correct decimal point */