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
5eaeaf91
Kaydet (Commit)
5eaeaf91
authored
Ara 30, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added casts to forestall warnings with MetroWerks.
üst
acda3394
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
zipimport.c
Modules/zipimport.c
+4
-4
No files found.
Modules/zipimport.c
Dosyayı görüntüle @
5eaeaf91
...
...
@@ -685,7 +685,7 @@ read_directory(char *archive)
"'%.200s'"
,
archive
);
return
NULL
;
}
if
(
get_long
(
endof_central_dir
)
!=
0x06054B50
)
{
if
(
get_long
(
(
unsigned
char
*
)
endof_central_dir
)
!=
0x06054B50
)
{
/* Bad: End of Central Dir signature */
fclose
(
fp
);
PyErr_Format
(
ZipImportError
,
"not a Zip file: "
...
...
@@ -693,7 +693,7 @@ read_directory(char *archive)
return
NULL
;
}
header_offset
=
get_long
(
endof_central_dir
+
16
);
header_offset
=
get_long
(
(
unsigned
char
*
)
endof_central_dir
+
16
);
files
=
PyDict_New
();
if
(
files
==
NULL
)
...
...
@@ -911,7 +911,7 @@ unmarshal_code(char *pathname, PyObject *data, time_t mtime)
return
NULL
;
}
if
(
get_long
(
buf
)
!=
PyImport_GetMagicNumber
())
{
if
(
get_long
(
(
unsigned
char
*
)
buf
)
!=
PyImport_GetMagicNumber
())
{
if
(
Py_VerboseFlag
)
PySys_WriteStderr
(
"# %s has bad magic
\n
"
,
pathname
);
...
...
@@ -919,7 +919,7 @@ unmarshal_code(char *pathname, PyObject *data, time_t mtime)
return
Py_None
;
/* signal caller to try alternative */
}
if
(
mtime
!=
0
&&
!
eq_mtime
(
get_long
(
buf
+
4
),
mtime
))
{
if
(
mtime
!=
0
&&
!
eq_mtime
(
get_long
(
(
unsigned
char
*
)
buf
+
4
),
mtime
))
{
if
(
Py_VerboseFlag
)
PySys_WriteStderr
(
"# %s has bad mtime
\n
"
,
pathname
);
...
...
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