Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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ç
Batuhan Osman TASKAYA
cpython
Commits
f36d65c7
Kaydet (Commit)
f36d65c7
authored
Haz 21, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use GetEnvironmentVariableW instead of _wgetenv to silence VC warnings.
üst
56bf6f82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
launcher.c
PC/launcher.c
+19
-10
No files found.
PC/launcher.c
Dosyayı görüntüle @
f36d65c7
...
...
@@ -54,22 +54,31 @@ skip_whitespace(wchar_t * p)
}
/*
* This function is here to minimise Visual Studio
* warnings about security implications of getenv, and to
* treat blank values as if they are absent.
* This function is here to simplify memory management
* and to treat blank values as if they are absent.
*/
static
wchar_t
*
get_env
(
wchar_t
*
key
)
{
wchar_t
*
result
=
_wgetenv
(
key
);
if
(
result
)
{
result
=
skip_whitespace
(
result
);
if
(
*
result
==
L'\0'
)
result
=
NULL
;
/* This is not thread-safe, just like getenv */
static
wchar_t
buf
[
256
];
DWORD
result
=
GetEnvironmentVariableW
(
key
,
buf
,
256
);
if
(
result
>
256
)
{
/* Large environment variable. Accept some leakage */
wchar_t
*
buf2
=
(
wchar_t
*
)
malloc
(
sizeof
(
wchar_t
)
*
(
result
+
1
));
GetEnvironmentVariableW
(
key
,
buf2
,
result
);
return
buf2
;
}
return
result
;
if
(
result
==
0
)
/* Either some error, e.g. ERROR_ENVVAR_NOT_FOUND,
or an empty environment variable. */
return
NULL
;
return
buf
;
}
static
void
debug
(
wchar_t
*
format
,
...)
{
...
...
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