Просмотр исходного кода

[libc][time] solve the problem which the os tick can be calculated wrongly because the local variable was not initialized.

chunyexixiaoyu 2 лет назад
Родитель
Сommit
37d0be3290
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      components/libc/compilers/common/time.c

+ 1 - 1
components/libc/compilers/common/time.c

@@ -689,7 +689,7 @@ int rt_timespec_to_tick(const struct timespec *time)
 {
     int tick;
     int nsecond, second;
-    struct timespec tp;
+    struct timespec tp = {0};
 
     RT_ASSERT(time != RT_NULL);