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
7bc44302
Kaydet (Commit)
7bc44302
authored
Agu 14, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.5 (closes #27758)
üst
c00189e9
9745ee0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
4 deletions
+22
-4
NEWS
Misc/NEWS
+3
-0
_csv.c
Modules/_csv.c
+19
-4
No files found.
Misc/NEWS
Dosyayı görüntüle @
7bc44302
...
...
@@ -58,6 +58,9 @@ Library
-
Issue
#
27661
:
Added
tzinfo
keyword
argument
to
datetime
.
combine
.
-
Issue
#
27758
:
Fix
possible
integer
overflow
in
the
_csv
module
for
large
record
lengths
.
-
Issue
#
27568
:
Prevent
HTTPoxy
attack
(
CVE
-
2016
-
1000110
).
Ignore
the
HTTP_PROXY
variable
when
REQUEST_METHOD
environment
is
set
,
which
indicates
that
the
script
is
in
CGI
mode
.
...
...
Modules/_csv.c
Dosyayı görüntüle @
7bc44302
...
...
@@ -1014,11 +1014,19 @@ join_append_data(WriterObj *self, unsigned int field_kind, void *field_data,
int
i
;
Py_ssize_t
rec_len
;
#define ADDCH(c) \
#define INCLEN \
do {\
if (!copy_phase && rec_len == PY_SSIZE_T_MAX) { \
goto overflow; \
} \
rec_len++; \
} while(0)
#define ADDCH(c) \
do {\
if (copy_phase) \
self->rec[rec_len] = c;\
rec_len++
;\
INCLEN
;\
} while(0)
rec_len
=
self
->
rec_len
;
...
...
@@ -1072,11 +1080,18 @@ join_append_data(WriterObj *self, unsigned int field_kind, void *field_data,
if
(
*
quoted
)
{
if
(
copy_phase
)
ADDCH
(
dialect
->
quotechar
);
else
rec_len
+=
2
;
else
{
INCLEN
;
/* starting quote */
INCLEN
;
/* ending quote */
}
}
return
rec_len
;
overflow:
PyErr_NoMemory
();
return
-
1
;
#undef ADDCH
#undef INCLEN
}
static
int
...
...
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