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
706e7b1e
Kaydet (Commit)
706e7b1e
authored
Agu 04, 2012
tarafından
Arnaud Versini
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace usage of rtl/memory.h in filter with equivalent from string.h
Change-Id: If8313df67e037f48c56d9d4e4251316fc99894e7
üst
f6acb53b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
impdialog.cxx
filter/source/pdf/impdialog.cxx
+3
-2
No files found.
filter/source/pdf/impdialog.cxx
Dosyayı görüntüle @
706e7b1e
...
...
@@ -26,6 +26,7 @@
*
************************************************************************/
#include <string.h>
#include "impdialog.hxx"
#include "impdialog.hrc"
...
...
@@ -1317,8 +1318,8 @@ IMPL_LINK_NOARG(ImpPDFTabSecurityPage, ClickmaPbSetPwdHdl)
maPreparedOwnerPassword
=
Sequence
<
NamedValue
>
();
// trash clear text passwords string memory
rtl_zeroMemory
(
(
void
*
)
aUserPW
.
getStr
()
,
aUserPW
.
getLength
()
);
rtl_zeroMemory
(
(
void
*
)
aOwnerPW
.
getStr
()
,
aOwnerPW
.
getLength
()
);
memset
(
(
void
*
)
aUserPW
.
getStr
(),
0
,
aUserPW
.
getLength
()
);
memset
(
(
void
*
)
aOwnerPW
.
getStr
(),
0
,
aOwnerPW
.
getLength
()
);
}
enablePermissionControls
();
return
0
;
...
...
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