X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=block%2Fvvfat.c;h=06e6654824aaf2ab6e3dc5e248fceff8660af697;hb=eb7ff6fb0bddb33991fa44586ac8e2e02019dc97;hp=83706ce5564acd100d94dc42f0d80da97b956fe7;hpb=68b891ec3937aa2e18eed5a403b1d9fd9b875084;p=mirror_qemu.git diff --git a/block/vvfat.c b/block/vvfat.c index 83706ce556..06e6654824 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -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));