From 54c8dc214404f9effea66aa8895ac5d44a9c3af6 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Tue, 6 Jun 2000 20:52:17 +0000 Subject: Patch from Trent Mick: Fix a small bug in posixmodule.c where a char* is being dereferenced where it should not be. --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 20efb0e..67096c3 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -891,7 +891,7 @@ posix_listdir(self, args) if (FindClose(hFindFile) == FALSE) { errno = GetLastError(); - return posix_error_with_filename(&name); + return posix_error_with_filename(name); } return d; -- cgit v0.12