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
66de5497
Kaydet (Commit)
66de5497
authored
Eyl 15, 2000
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Check range for bytes and shorts. Closes bug #110845.
üst
c58dbebf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
2 deletions
+42
-2
structmodule.c
Modules/structmodule.c
+42
-2
No files found.
Modules/structmodule.c
Dosyayı görüntüle @
66de5497
...
...
@@ -477,6 +477,26 @@ np_byte(char *p, PyObject *v, const formatdef *f)
long
x
;
if
(
get_long
(
v
,
&
x
)
<
0
)
return
-
1
;
if
(
x
<
-
128
||
x
>
127
){
PyErr_SetString
(
StructError
,
"byte format requires -128<=number<=127"
);
return
-
1
;
}
*
p
=
(
char
)
x
;
return
0
;
}
static
int
np_ubyte
(
char
*
p
,
PyObject
*
v
,
const
formatdef
*
f
)
{
long
x
;
if
(
get_long
(
v
,
&
x
)
<
0
)
return
-
1
;
if
(
x
<
0
||
x
>
255
){
PyErr_SetString
(
StructError
,
"ubyte format requires 0<=number<=255"
);
return
-
1
;
}
*
p
=
(
char
)
x
;
return
0
;
}
...
...
@@ -499,10 +519,30 @@ np_short(char *p, PyObject *v, const formatdef *f)
long
x
;
if
(
get_long
(
v
,
&
x
)
<
0
)
return
-
1
;
if
(
x
<
-
32768
||
x
>
32767
){
PyErr_SetString
(
StructError
,
"short format requires -32768<=number<=32767"
);
return
-
1
;
}
*
(
short
*
)
p
=
(
short
)
x
;
return
0
;
}
static
int
np_ushort
(
char
*
p
,
PyObject
*
v
,
const
formatdef
*
f
)
{
long
x
;
if
(
get_long
(
v
,
&
x
)
<
0
)
return
-
1
;
if
(
x
<
0
||
x
>
65535
){
PyErr_SetString
(
StructError
,
"short format requires 0<=number<=65535"
);
return
-
1
;
}
*
(
unsigned
short
*
)
p
=
(
unsigned
short
)
x
;
return
0
;
}
static
int
np_int
(
char
*
p
,
PyObject
*
v
,
const
formatdef
*
f
)
{
...
...
@@ -587,12 +627,12 @@ np_void_p(char *p, PyObject *v, const formatdef *f)
static
formatdef
native_table
[]
=
{
{
'x'
,
sizeof
(
char
),
0
,
NULL
},
{
'b'
,
sizeof
(
char
),
0
,
nu_byte
,
np_byte
},
{
'B'
,
sizeof
(
char
),
0
,
nu_ubyte
,
np_byte
},
{
'B'
,
sizeof
(
char
),
0
,
nu_ubyte
,
np_
u
byte
},
{
'c'
,
sizeof
(
char
),
0
,
nu_char
,
np_char
},
{
's'
,
sizeof
(
char
),
0
,
NULL
},
{
'p'
,
sizeof
(
char
),
0
,
NULL
},
{
'h'
,
sizeof
(
short
),
SHORT_ALIGN
,
nu_short
,
np_short
},
{
'H'
,
sizeof
(
short
),
SHORT_ALIGN
,
nu_ushort
,
np_short
},
{
'H'
,
sizeof
(
short
),
SHORT_ALIGN
,
nu_ushort
,
np_
u
short
},
{
'i'
,
sizeof
(
int
),
INT_ALIGN
,
nu_int
,
np_int
},
{
'I'
,
sizeof
(
int
),
INT_ALIGN
,
nu_uint
,
np_uint
},
{
'l'
,
sizeof
(
long
),
LONG_ALIGN
,
nu_long
,
np_long
},
...
...
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