diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-11-07 09:07:22 +0100 |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-11-07 09:07:22 +0100 |
commit | 03464ecbcf5a88f7cf8d895700f03e4088799cc4 (patch) | |
tree | ed54ebc1e16f9f606bb03fb02d0fb446cfcb17ac /Python/dynload_os2.c | |
parent | a35283195c8a126cf7f4bed558f8ee758023737d (diff) | |
parent | 49d34d665e6af4a37d2194bf677e9c7df27a7ebf (diff) | |
download | cpython-03464ecbcf5a88f7cf8d895700f03e4088799cc4.tar.gz |
Issue #15001: fix segfault on "del sys.module['__main__']"
Patch by Victor Stinner.
Diffstat (limited to 'Python/dynload_os2.c')
-rw-r--r-- | Python/dynload_os2.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Python/dynload_os2.c b/Python/dynload_os2.c index 101c024bbe..0e1b907b8c 100644 --- a/Python/dynload_os2.c +++ b/Python/dynload_os2.c @@ -9,13 +9,9 @@ #include "importdl.h" -const struct filedescr _PyImport_DynLoadFiletab[] = { - {".pyd", "rb", C_EXTENSION}, - {".dll", "rb", C_EXTENSION}, - {0, 0} -}; +const char *_PyImport_DynLoadFiletab[] = {".pyd", ".dll", NULL}; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; |