diff options
author | Siva Sivaraman <kasivara@microsoft.com> | 2020-05-18 08:59:58 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-19 08:55:27 +0200 |
commit | c5f0a9db22e7bfd27cb71ecc5e918682ed3ed663 (patch) | |
tree | 248709dc86cc6c32ab21eb02d35717333bbb95af /src | |
parent | c4df1f75ad6a90c70dc96e7b183be066465014ec (diff) | |
download | curl-c5f0a9db22e7bfd27cb71ecc5e918682ed3ed663.tar.gz |
tool_paramhlp: fixed potentially uninitialized strtol() variable
Seems highly unlikely to actually be possible, but better safe than
sorry.
Closes #5417
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_paramhlp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tool_paramhlp.c b/src/tool_paramhlp.c index 67702ebe2..1fe364075 100644 --- a/src/tool_paramhlp.c +++ b/src/tool_paramhlp.c @@ -181,6 +181,7 @@ ParameterError str2num(long *val, const char *str) { if(str) { char *endptr; + endptr = (void*)0; long num; errno = 0; num = strtol(str, &endptr, 10); |