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
92da838e
Kaydet (Commit)
92da838e
authored
May 10, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1079343 Uninitialized pointer field
Change-Id: I05ec88144273c15181e9afa8f616b0ab11695f04
üst
106d1621
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
CryptTools.hxx
include/oox/crypto/CryptTools.hxx
+1
-1
CryptTools.cxx
oox/source/crypto/CryptTools.cxx
+7
-2
No files found.
include/oox/crypto/CryptTools.hxx
Dosyayı görüntüle @
92da838e
...
...
@@ -53,6 +53,7 @@ public:
};
protected
:
CryptoType
mType
;
#if USE_TLS_OPENSSL
EVP_CIPHER_CTX
mContext
;
#endif
...
...
@@ -61,7 +62,6 @@ protected:
SECItem
*
mSecParam
;
PK11SymKey
*
mSymKey
;
#endif
CryptoType
mType
;
#if USE_TLS_OPENSSL
const
EVP_CIPHER
*
getCipher
(
CryptoType
type
);
...
...
oox/source/crypto/CryptTools.cxx
Dosyayı görüntüle @
92da838e
...
...
@@ -16,8 +16,13 @@ namespace core {
using
namespace
std
;
Crypto
::
Crypto
(
CryptoType
type
)
:
mType
(
type
)
Crypto
::
Crypto
(
CryptoType
type
)
:
mType
(
type
)
#if USE_TLS_NSS
,
mContext
(
NULL
)
,
mSecParam
(
NULL
)
,
mSymKey
(
NULL
)
#endif
{
#if USE_TLS_NSS
// Initialize NSS, database functions are not needed
...
...
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