Explorar o código

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

chunyexixiaoyu %!s(int64=2) %!d(string=hai) anos
pai
achega
37d0be3290
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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);