mirror of https://github.com/RT-Thread/rt-thread
[libc][time] solve the problem which the os tick can be calculated wrongly because the local variable was not initialized.
This commit is contained in:
parent
a9dce72915
commit
37d0be3290
|
@ -689,7 +689,7 @@ int rt_timespec_to_tick(const struct timespec *time)
|
||||||
{
|
{
|
||||||
int tick;
|
int tick;
|
||||||
int nsecond, second;
|
int nsecond, second;
|
||||||
struct timespec tp;
|
struct timespec tp = {0};
|
||||||
|
|
||||||
RT_ASSERT(time != RT_NULL);
|
RT_ASSERT(time != RT_NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue