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
0e49d87d
Kaydet (Commit)
0e49d87d
authored
Şub 15, 2013
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#60732: check max size in SwTxtNode::ReplaceTextOnly
Change-Id: I1ca2075ab99fe1b09df700f55645b44f38cf5bcc
üst
b6d45f26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
txtedt.cxx
sw/source/core/txtnode/txtedt.cxx
+15
-2
No files found.
sw/source/core/txtnode/txtedt.cxx
Dosyayı görüntüle @
0e49d87d
...
...
@@ -1799,9 +1799,19 @@ void SwTxtNode::TransliterateText(
{
// now apply the changes from end to start to leave the offsets of the
// yet unchanged text parts remain the same.
size_t
nSum
(
m_Text
.
Len
());
for
(
size_t
i
=
0
;
i
<
aChanges
.
size
();
++
i
)
{
swTransliterationChgData
&
rData
=
aChanges
[
aChanges
.
size
()
-
1
-
i
];
{
// check this here since AddChanges cannot be moved below
// call to ReplaceTextOnly
swTransliterationChgData
&
rData
=
aChanges
[
aChanges
.
size
()
-
1
-
i
];
nSum
=
nSum
+
rData
.
sChanged
.
Len
()
-
rData
.
nLen
;
if
(
nSum
>
TXTNODE_MAX
)
{
SAL_WARN
(
"sw.core"
,
"SwTxtNode::ReplaceTextOnly: "
"node text with insertion > TXTNODE_MAX."
);
return
;
}
if
(
pUndo
)
pUndo
->
AddChanges
(
*
this
,
rData
.
nStart
,
rData
.
nLen
,
rData
.
aOffsets
);
ReplaceTextOnly
(
rData
.
nStart
,
rData
.
nLen
,
rData
.
sChanged
,
rData
.
aOffsets
);
...
...
@@ -1814,6 +1824,9 @@ void SwTxtNode::ReplaceTextOnly( xub_StrLen nPos, xub_StrLen nLen,
const
XubString
&
rText
,
const
Sequence
<
sal_Int32
>&
rOffsets
)
{
assert
(
static_cast
<
size_t
>
(
m_Text
.
Len
())
+
static_cast
<
size_t
>
(
rText
.
Len
())
-
nLen
<=
TXTNODE_MAX
);
m_Text
.
Replace
(
nPos
,
nLen
,
rText
);
xub_StrLen
nTLen
=
rText
.
Len
();
...
...
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