summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/config.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/config.c b/main/config.c
index 9abc6020d..336f51e39 100644
--- a/main/config.c
+++ b/main/config.c
@@ -2827,8 +2827,9 @@ int ast_parse_arg(const char *arg, enum ast_parse_flags flags,
error = 1;
goto int32_done;
}
+ errno = 0;
x = strtol(arg, &endptr, 0);
- if (*endptr || x < INT32_MIN || x > INT32_MAX) {
+ if (*endptr || errno || x < INT32_MIN || x > INT32_MAX) {
/* Parse error, or type out of int32_t bounds */
error = 1;
goto int32_done;
@@ -2881,8 +2882,9 @@ int32_done:
error = 1;
goto uint32_done;
}
+ errno = 0;
x = strtoul(arg, &endptr, 0);
- if (*endptr || x > UINT32_MAX) {
+ if (*endptr || errno || x > UINT32_MAX) {
error = 1;
goto uint32_done;
}