Marcin Kowalczyk
Marcin Kowalczyk
**Description** A new entries in an archive is written by: * writing a preliminary directory entry * writing file contents * seeking backward before the directory entry * writing the...
**Describe the Bug** `zip_file_set_dostime()` calls `_zip_d2u_time()` which calls `mktime()` to convert the time from the local time zone to absolute `time_t`. Later `_zip_dirent_write()` calls `_zip_u2d_time()` which calls `localtime_r()` to convert...
When resuming a resumable upload using `gcs::RestoreResumableUploadSession()`, the C++ client sends `Content-Range: bytes */*`: https://github.com/googleapis/google-cloud-cpp/blob/1178ef9bbb0257e940dc2d9af475802d8bb37038/google/cloud/storage/internal/rest_client.cc#L699 fake-gcs-server rejects this: https://github.com/fsouza/fake-gcs-server/blob/e2d2de125a3c14829c3f063681f37aa7e8095444/fakestorage/upload.go#L594 AFAIK this syntax is valid.