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
93bf9022
Kaydet (Commit)
93bf9022
authored
Agu 13, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Handle alloca failures.
Klocwork 225-228
üst
9ac89535
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
_ctypes.c
Modules/_ctypes/_ctypes.c
+2
-0
callproc.c
Modules/_ctypes/callproc.c
+13
-0
No files found.
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
93bf9022
...
...
@@ -2475,6 +2475,8 @@ static PPROC FindAddress(void *handle, char *name, PyObject *type)
where n is 0, 4, 8, 12, ..., 128
*/
mangled_name
=
alloca
(
strlen
(
name
)
+
1
+
1
+
1
+
3
);
/* \0 _ @ %d */
if
(
!
mangled_name
)
return
NULL
;
for
(
i
=
0
;
i
<
32
;
++
i
)
{
sprintf
(
mangled_name
,
"_%s@%d"
,
name
,
i
*
4
);
address
=
(
PPROC
)
GetProcAddress
(
handle
,
mangled_name
);
...
...
Modules/_ctypes/callproc.c
Dosyayı görüntüle @
93bf9022
...
...
@@ -915,6 +915,10 @@ PyObject *_CallProc(PPROC pProc,
#endif
args
=
(
struct
argument
*
)
alloca
(
sizeof
(
struct
argument
)
*
argcount
);
if
(
!
args
)
{
PyErr_NoMemory
();
return
NULL
;
}
memset
(
args
,
0
,
sizeof
(
struct
argument
)
*
argcount
);
argtype_count
=
argtypes
?
PyTuple_GET_SIZE
(
argtypes
)
:
0
;
#ifdef MS_WIN32
...
...
@@ -968,6 +972,10 @@ PyObject *_CallProc(PPROC pProc,
avalues
=
(
void
**
)
alloca
(
sizeof
(
void
*
)
*
argcount
);
atypes
=
(
ffi_type
**
)
alloca
(
sizeof
(
ffi_type
*
)
*
argcount
);
if
(
!
resbuf
||
!
avalues
||
!
atypes
)
{
PyErr_NoMemory
();
goto
cleanup
;
}
for
(
i
=
0
;
i
<
argcount
;
++
i
)
{
atypes
[
i
]
=
args
[
i
].
ffi_type
;
if
(
atypes
[
i
]
->
type
==
FFI_TYPE_STRUCT
)
...
...
@@ -1068,6 +1076,11 @@ static PyObject *load_library(PyObject *self, PyObject *args)
return
NULL
;
#ifdef _UNICODE
name
=
alloca
((
PyString_Size
(
nameobj
)
+
1
)
*
sizeof
(
WCHAR
));
if
(
!
name
)
{
PyErr_NoMemory
();
return
NULL
;
}
{
int
r
;
char
*
aname
=
PyString_AsString
(
nameobj
);
...
...
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