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
a15a7bca
Kaydet (Commit)
a15a7bca
authored
Haz 08, 2019
tarafından
Ammar Askar
Kaydeden (comit)
Gregory P. Smith
Haz 08, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29505: Fix interpreter in fuzzing targets to be relocatable (GH-13907)
üst
d407d2a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
fuzzer.c
Modules/_xxtestfuzz/fuzzer.c
+8
-0
No files found.
Modules/_xxtestfuzz/fuzzer.c
Dosyayı görüntüle @
a15a7bca
...
...
@@ -88,6 +88,14 @@ static int _run_fuzz(const uint8_t *data, size_t size, int(*fuzzer)(const char*
/* CPython generates a lot of leak warnings for whatever reason. */
int
__lsan_is_turned_off
(
void
)
{
return
1
;
}
wchar_t
wide_program_name
[
NAME_MAX
];
int
LLVMFuzzerInitialize
(
int
*
argc
,
char
***
argv
)
{
wchar_t
*
wide_program_name
=
Py_DecodeLocale
(
*
argv
[
0
],
NULL
);
Py_SetProgramName
(
wide_program_name
);
return
0
;
}
/* Fuzz test interface.
This returns the bitwise or of all fuzz test's return values.
...
...
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