]> git.proxmox.com Git - mirror_qemu.git/blobdiff - block/vvfat.c
Replace remaining gmtime, localtime by gmtime_r, localtime_r
[mirror_qemu.git] / block / vvfat.c
index 83706ce5564acd100d94dc42f0d80da97b956fe7..06e6654824aaf2ab6e3dc5e248fceff8660af697 100644 (file)
@@ -529,13 +529,9 @@ static inline uint8_t fat_chksum(const direntry_t* entry)
 /* if return_time==0, this returns the fat_date, else the fat_time */
 static uint16_t fat_datetime(time_t time,int return_time) {
     struct tm* t;
-#ifdef _WIN32
-    t=localtime(&time); /* this is not thread safe */
-#else
     struct tm t1;
     t = &t1;
     localtime_r(&time,t);
-#endif
     if(return_time)
        return cpu_to_le16((t->tm_sec/2)|(t->tm_min<<5)|(t->tm_hour<<11));
     return cpu_to_le16((t->tm_mday)|((t->tm_mon+1)<<5)|((t->tm_year-80)<<9));