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
73660af6
Kaydet (Commit)
73660af6
authored
Eki 29, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19428: zipimport now handles errors when reading truncated or invalid
ZIP archive.
üst
a5afb589
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
NEWS
Misc/NEWS
+3
-0
zipimport.c
Modules/zipimport.c
+13
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
73660af6
...
...
@@ -10,6 +10,9 @@ Projected release date: 2013-11-24
Core and Builtins
-----------------
- Issue #19428: zipimport now handles errors when reading truncated or invalid
ZIP archive.
- Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
exceptions when merging fast locals into f_locals of a frame.
PyEval_GetLocals() now raises an exception and return NULL on failure.
...
...
Modules/zipimport.c
Dosyayı görüntüle @
73660af6
...
...
@@ -914,6 +914,8 @@ read_directory(PyObject *archive)
/* Start of file header */
l
=
PyMarshal_ReadLongFromFile
(
fp
);
if
(
l
==
-
1
&&
PyErr_Occurred
())
goto
error
;
if
(
l
!=
0x02014B50
)
break
;
/* Bad: Central Dir File Header */
...
...
@@ -937,6 +939,9 @@ read_directory(PyObject *archive)
if
(
fread
(
dummy
,
1
,
8
,
fp
)
!=
8
)
/* Skip unused fields, avoid fseek */
goto
file_error
;
file_offset
=
PyMarshal_ReadLongFromFile
(
fp
)
+
arc_offset
;
if
(
PyErr_Occurred
())
goto
error
;
if
(
name_size
>
MAXPATHLEN
)
name_size
=
MAXPATHLEN
;
...
...
@@ -1082,9 +1087,10 @@ get_data(PyObject *archive, PyObject *toc_entry)
l
=
PyMarshal_ReadLongFromFile
(
fp
);
if
(
l
!=
0x04034B50
)
{
/* Bad: Local File Header */
PyErr_Format
(
ZipImportError
,
"bad local file header in %U"
,
archive
);
if
(
!
PyErr_Occurred
())
PyErr_Format
(
ZipImportError
,
"bad local file header in %U"
,
archive
);
fclose
(
fp
);
return
NULL
;
}
...
...
@@ -1096,6 +1102,10 @@ get_data(PyObject *archive, PyObject *toc_entry)
l
=
30
+
PyMarshal_ReadShortFromFile
(
fp
)
+
PyMarshal_ReadShortFromFile
(
fp
);
/* local header size */
if
(
PyErr_Occurred
())
{
fclose
(
fp
);
return
NULL
;
}
file_offset
+=
l
;
/* Start of file data */
bytes_size
=
compress
==
0
?
data_size
:
data_size
+
1
;
...
...
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