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
7d7930bb
Kaydet (Commit)
7d7930bb
authored
Kas 05, 2002
tarafından
Gustavo Niemeyer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* bzmodule.c
More fixes of XDECREF'd values not initialized.
üst
e94d8fab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bz2module.c
Modules/bz2module.c
+3
-3
No files found.
Modules/bz2module.c
Dosyayı görüntüle @
7d7930bb
...
...
@@ -1426,7 +1426,7 @@ BZ2Comp_compress(BZ2CompObject *self, PyObject *args)
int
datasize
;
int
bufsize
=
SMALLCHUNK
;
long
totalout
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
*
bzs
=
&
self
->
bzs
;
int
bzerror
;
...
...
@@ -1495,7 +1495,7 @@ static PyObject *
BZ2Comp_flush
(
BZ2CompObject
*
self
)
{
int
bufsize
=
SMALLCHUNK
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
*
bzs
=
&
self
->
bzs
;
int
totalout
;
int
bzerror
;
...
...
@@ -1905,7 +1905,7 @@ bz2_compress(PyObject *self, PyObject *args, PyObject *kwargs)
char
*
data
;
int
datasize
;
int
bufsize
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
_bzs
;
bz_stream
*
bzs
=
&
_bzs
;
int
bzerror
;
...
...
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