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
11a3f0c2
Kaydet (Commit)
11a3f0c2
authored
Tem 18, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
NT specific change for nicer error message (Mark H)
üst
2271bf71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
3 deletions
+32
-3
importdl.c
Python/importdl.c
+32
-3
No files found.
Python/importdl.c
Dosyayı görüntüle @
11a3f0c2
...
...
@@ -336,9 +336,38 @@ load_dynamic_module(name, pathname, fp)
HINSTANCE
hDLL
;
hDLL
=
LoadLibrary
(
pathname
);
if
(
hDLL
==
NULL
){
char
errBuf
[
64
];
sprintf
(
errBuf
,
"DLL load failed with error code %d"
,
GetLastError
());
char
errBuf
[
256
];
unsigned
int
errorCode
;
/* Get an error string from Win32 error code */
char
theInfo
[
256
];
/* Pointer to error text from system */
int
theLength
;
/* Length of error text */
errorCode
=
GetLastError
();
theLength
=
FormatMessage
(
FORMAT_MESSAGE_FROM_SYSTEM
,
/* flags */
NULL
,
/* message source */
errorCode
,
/* the message (error) ID */
0
,
/* default language environment */
(
LPTSTR
)
theInfo
,
/* the buffer */
sizeof
(
theInfo
),
/* the buffer size */
NULL
);
/* no additional format args. */
/* Problem: could not get the error message. This should not happen if called correctly. */
if
(
theLength
==
0
)
{
sprintf
(
errBuf
,
"DLL load failed with error code %d"
,
errorCode
);
}
else
{
int
len
;
/* For some reason a \r\n is appended to the text */
if
(
theLength
>=
2
&&
theInfo
[
theLength
-
2
]
==
'\r'
&&
theInfo
[
theLength
-
1
]
==
'\n'
)
{
theLength
-=
2
;
theInfo
[
theLength
]
=
'\0'
;
}
strcpy
(
errBuf
,
"DLL load failed: "
);
len
=
strlen
(
errBuf
);
strncpy
(
errBuf
+
len
,
theInfo
,
sizeof
(
errBuf
)
-
len
);
errBuf
[
sizeof
(
errBuf
)
-
1
]
=
'\0'
;
}
err_setstr
(
ImportError
,
errBuf
);
return
NULL
;
}
...
...
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