mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
AST-2009-005
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@211551 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1607,7 +1607,7 @@ int ast_get_timeval(const char *src, struct timeval *dst, struct timeval _defaul
|
||||
return -1;
|
||||
|
||||
/* only integer at the moment, but one day we could accept more formats */
|
||||
if (sscanf(src, "%Lf%n", &dtv, &scanned) > 0) {
|
||||
if (sscanf(src, "%30Lf%n", &dtv, &scanned) > 0) {
|
||||
dst->tv_sec = dtv;
|
||||
dst->tv_usec = (dtv - dst->tv_sec) * 1000000.0;
|
||||
if (consumed)
|
||||
@@ -1634,7 +1634,7 @@ int ast_get_time_t(const char *src, time_t *dst, time_t _default, int *consumed)
|
||||
return -1;
|
||||
|
||||
/* only integer at the moment, but one day we could accept more formats */
|
||||
if (sscanf(src, "%ld%n", &t, &scanned) == 1) {
|
||||
if (sscanf(src, "%30ld%n", &t, &scanned) == 1) {
|
||||
*dst = t;
|
||||
if (consumed)
|
||||
*consumed = scanned;
|
||||
|
||||
Reference in New Issue
Block a user