Corrected a bug introduced with rev 5240

This commit is contained in:
Thomas Schmitt 2014-02-13 15:41:30 +00:00
parent 6d2061fd5f
commit 5649f61c7c
2 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@ int Xorriso_pvd_info(struct XorrisO *xorriso, int flag)
ret= iso_image_get_pvd_times(image, &crt, &mdt, &ext, &eft);
if(ret != ISO_SUCCESS)
crt= mdt= ext= eft= "";
crt= mdt= ext= eft= " "; /* Need 17 bytes. Last byte 0. */
Xorriso_report_pvd_time(xorriso, "Creation Time:", crt, 0);
Xorriso_report_pvd_time(xorriso, "Modif. Time :", mdt, 0);
Xorriso_report_pvd_time(xorriso, "Expir. Time :", ext, 0);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2014.02.10.104827"
#define Xorriso_timestamP "2014.02.13.154003"