summaryrefslogtreecommitdiff
path: root/Python/dynload_os2.c
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-09-21 22:05:01 +0200
committerCharles-François Natali <neologix@free.fr>2011-09-21 22:05:01 +0200
commit7a3378adef3d5b5c33682d5f99b2e23a743fb0fd (patch)
tree74df725698973459ab69a4134e823b782fd3986c /Python/dynload_os2.c
parentd0b2eb8db3dbd222dce8b9a6bb8a4b1db12abdd1 (diff)
parentbb8e04283b53f22f2fc98b7ef80e305dbdb562de (diff)
downloadcpython-7a3378adef3d5b5c33682d5f99b2e23a743fb0fd.tar.gz
Fix a race condition in test_socket.ThreadableTest: the client is reported
ready before having been set up.
Diffstat (limited to 'Python/dynload_os2.c')
-rw-r--r--Python/dynload_os2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_os2.c b/Python/dynload_os2.c
index 101c024bbe..f7264da04c 100644
--- a/Python/dynload_os2.c
+++ b/Python/dynload_os2.c
@@ -15,7 +15,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
{0, 0}
};
-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;