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
396da96d
Kaydet (Commit)
396da96d
authored
Eki 15, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cid#1326117 Unchecked return value
Change-Id: Ieaa1875a8731b5339d4ebf032b3f724ff889903f
üst
06907141
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
PdbDecoder.java
...java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
+4
-1
No files found.
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
Dosyayı görüntüle @
396da96d
...
@@ -107,7 +107,10 @@ public final class PdbDecoder {
...
@@ -107,7 +107,10 @@ public final class PdbDecoder {
// last record
// last record
dis
.
reset
();
dis
.
reset
();
int
len
=
dis
.
available
()
-
recOffset
[
lastIndex
];
int
len
=
dis
.
available
()
-
recOffset
[
lastIndex
];
dis
.
skip
(
recOffset
[
lastIndex
]);
int
nBytesToSkip
=
recOffset
[
lastIndex
];
while
(
nBytesToSkip
>
0
)
{
nBytesToSkip
-=
dis
.
skip
(
nBytesToSkip
);
}
byte
[]
bytes
=
new
byte
[
len
];
byte
[]
bytes
=
new
byte
[
len
];
dis
.
readFully
(
bytes
);
dis
.
readFully
(
bytes
);
recArray
[
lastIndex
]
=
new
Record
(
bytes
,
recAttrs
[
lastIndex
]);
recArray
[
lastIndex
]
=
new
Record
(
bytes
,
recAttrs
[
lastIndex
]);
...
...
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