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
880f529c
Kaydet (Commit)
880f529c
authored
Tem 15, 2008
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3313: Contrary to the man page, a failed dlopen() call does not
always set a dlerror() message.
üst
7103aa42
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
NEWS
Misc/NEWS
+3
-0
callproc.c
Modules/_ctypes/callproc.c
+4
-1
dlmodule.c
Modules/dlmodule.c
+4
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
880f529c
...
...
@@ -57,6 +57,9 @@ Core and Builtins
Library
-------
- Issue #3313: Fixed a crash when a failed dlopen() call does not set
a valid dlerror() message.
- Issue #3258: Fixed a crash when a ctypes POINTER type to an
incomplete structure was created.
...
...
Modules/_ctypes/callproc.c
Dosyayı görüntüle @
880f529c
...
...
@@ -1410,8 +1410,11 @@ static PyObject *py_dl_open(PyObject *self, PyObject *args)
mode
|=
RTLD_NOW
;
handle
=
ctypes_dlopen
(
name
,
mode
);
if
(
!
handle
)
{
char
*
errmsg
=
ctypes_dlerror
();
if
(
!
errmsg
)
errmsg
=
"dlopen() error"
;
PyErr_SetString
(
PyExc_OSError
,
ctypes_dlerror
()
);
errmsg
);
return
NULL
;
}
return
PyLong_FromVoidPtr
(
handle
);
...
...
Modules/dlmodule.c
Dosyayı görüntüle @
880f529c
...
...
@@ -186,7 +186,10 @@ dl_open(PyObject *self, PyObject *args)
}
handle
=
dlopen
(
name
,
mode
);
if
(
handle
==
NULL
)
{
PyErr_SetString
(
Dlerror
,
dlerror
());
char
*
errmsg
=
dlerror
();
if
(
!
errmsg
)
errmsg
=
"dlopen() error"
;
PyErr_SetString
(
Dlerror
,
errmsg
);
return
NULL
;
}
#ifdef __VMS
...
...
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