Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
4d220882
Kaydet (Commit)
4d220882
authored
Tem 05, 2013
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
hair splitting on years in dates in ZIP structure
Change-Id: I9d7a6436e3df75eff592d19dcaca0f655ebf2160
üst
6e82772d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
ZipOutputStream.cxx
package/source/zipapi/ZipOutputStream.cxx
+15
-2
No files found.
package/source/zipapi/ZipOutputStream.cxx
Dosyayı görüntüle @
4d220882
...
...
@@ -450,12 +450,25 @@ sal_uInt32 ZipOutputStream::getCurrentDosTime( )
osl_getSystemTime
(
&
aTimeValue
);
osl_getDateTimeFromTimeValue
(
&
aTimeValue
,
&
aDateTime
);
// at year 2108, there is an overflow
// -> some decision needs to be made
// how to handle the ZIP file format (just overflow?)
// if the current system time is before 1980,
// then the time traveller will have to make a decision
// how to handle the ZIP file format before it is invented
// (just underflow?)
assert
(
aDateTime
.
Year
>
1980
&&
aDateTime
.
Year
<
2108
);
sal_uInt32
nYear
=
static_cast
<
sal_uInt32
>
(
aDateTime
.
Year
);
if
(
nYear
>
1980
)
if
(
nYear
>
=
1980
)
nYear
-=
1980
;
else
if
(
nYear
>
80
)
else
if
(
nYear
>=
80
)
{
nYear
-=
80
;
}
sal_uInt32
nResult
=
static_cast
<
sal_uInt32
>
(
(
(
(
aDateTime
.
Day
)
+
(
32
*
(
aDateTime
.
Month
))
+
(
512
*
nYear
)
)
<<
16
)
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment