summaryrefslogtreecommitdiffstats
path: root/Python/dynload_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r--Python/dynload_win.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c
index ef3e2c5..7bf3dfc 100644
--- a/Python/dynload_win.c
+++ b/Python/dynload_win.c
@@ -254,9 +254,9 @@ dl_funcptr _PyImport_GetDynLoadWindows(const char *shortname,
theLength));
}
if (message != NULL) {
- PyErr_SetFromImportErrorWithNameAndPath(message,
- PyUnicode_FromString(shortname),
- pathname);
+ PyErr_SetImportError(message, PyUnicode_FromString(shortname),
+ pathname);
+ Py_DECREF(message);
}
return NULL;
} else {