Procházet zdrojové kódy

[libc] [ctime] fix rt_timespec_to_tick fun internal data overflow (#8198)

kk před 2 roky
rodič
revize
1d3fc71c79
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      components/libc/compilers/common/ctime.c

+ 2 - 1
components/libc/compilers/common/ctime.c

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