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
454c4380
Kaydet (Commit)
454c4380
authored
Agu 18, 2017
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast (clang-cl)
Change-Id: Id3f66842829a4b86f7980f0c1cbfe6e56e958e9c
üst
dd066778
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
windows_process.cxx
comphelper/source/windows/windows_process.cxx
+2
-2
No files found.
comphelper/source/windows/windows_process.cxx
Dosyayı görüntüle @
454c4380
...
...
@@ -143,7 +143,7 @@ MakeCommandLine(int argc, wchar_t **argv)
if
(
len
==
0
)
len
=
1
;
wchar_t
*
s
=
(
wchar_t
*
)
malloc
(
len
*
sizeof
(
wchar_t
));
wchar_t
*
s
=
static_cast
<
wchar_t
*>
(
malloc
(
len
*
sizeof
(
wchar_t
)
));
if
(
!
s
)
return
nullptr
;
...
...
@@ -259,7 +259,7 @@ WinLaunchChild(const wchar_t *exePath,
nullptr
,
GetLastError
(),
MAKELANGID
(
LANG_NEUTRAL
,
SUBLANG_DEFAULT
),
(
LPTSTR
)
&
lpMsgBuf
,
reinterpret_cast
<
LPTSTR
>
(
&
lpMsgBuf
)
,
0
,
nullptr
);
wprintf
(
L"Error restarting: %s
\n
"
,
lpMsgBuf
?
lpMsgBuf
:
L"(null)"
);
...
...
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