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
bae47ec8
Kaydet (Commit)
bae47ec8
authored
Kas 13, 2009
tarafından
Kurt Zenker
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
CWS-TOOLING: integrate CWS cmcfixes66
üst
fae69df6
ad82f363
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
ulfconv.cxx
setup_native/source/ulfconv/ulfconv.cxx
+6
-0
x509certificate_mscryptimpl.cxx
...ity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
+4
-4
No files found.
setup_native/source/ulfconv/ulfconv.cxx
Dosyayı görüntüle @
bae47ec8
...
...
@@ -199,6 +199,8 @@ void read_encoding_table(char * file, EncodingMap& aEncodingMap)
aEncodingMap
.
insert
(
EncodingMap
::
value_type
(
language
,
encoding
->
value
)
);
}
}
fclose
(
fp
);
}
/************************************************************************
...
...
@@ -311,6 +313,7 @@ int main( int argc, char * const argv[] )
ostream
=
fopen
(
outfile
,
"w"
);
if
(
ostream
==
NULL
)
{
fprintf
(
stderr
,
"ulfconv: %s : %s
\n
"
,
outfile
,
strerror
(
errno
));
fclose
(
istream
);
exit
(
2
);
}
}
...
...
@@ -351,4 +354,7 @@ int main( int argc, char * const argv[] )
fputs
(
buffer
,
ostream
);
}
}
fclose
(
ostream
);
fclose
(
istream
);
}
xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
Dosyayı görüntüle @
bae47ec8
...
...
@@ -239,7 +239,7 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su
)
;
if
(
cbIssuer
<=
0
)
{
delete
issuer
;
delete
[]
issuer
;
throw
RuntimeException
()
;
}
...
...
@@ -252,7 +252,7 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su
if
(
issuer
[
cbIssuer
-
1
]
==
0
)
cbIssuer
--
;
//delimit the last 0x00;
OUString
xIssuer
(
issuer
,
cbIssuer
,
encoding
)
;
//By CP
delete
issuer
;
delete
[]
issuer
;
return
replaceTagSWithTagST
(
xIssuer
);
}
else
{
...
...
@@ -288,7 +288,7 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su
)
;
if
(
cbSubject
<=
0
)
{
delete
subject
;
delete
[]
subject
;
throw
RuntimeException
()
;
}
...
...
@@ -301,7 +301,7 @@ sal_Int16 SAL_CALL X509Certificate_MSCryptImpl :: getVersion() throw ( ::com::su
if
(
subject
[
cbSubject
-
1
]
==
0
)
cbSubject
--
;
//delimit the last 0x00;
OUString
xSubject
(
subject
,
cbSubject
,
encoding
)
;
//By CP
delete
subject
;
delete
[]
subject
;
return
replaceTagSWithTagST
(
xSubject
);
}
else
{
...
...
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