commit | 54c8dc214404f9effea66aa8895ac5d44a9c3af6 | [log] [tgz] |
---|---|---|
author | Andrew M. Kuchling <amk@amk.ca> | Tue Jun 06 20:52:17 2000 +0000 |
committer | Andrew M. Kuchling <amk@amk.ca> | Tue Jun 06 20:52:17 2000 +0000 |
tree | 764b9f162d4dc9ddbad07ea4a59c04c8ffff6779 | |
parent | 28a5f44cca9c5f6abe319f3a446bf057d66e980e [diff] [blame] |
Patch from Trent Mick: Fix a small bug in posixmodule.c where a char* is being dereferenced where it should not be.
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 @@ if (FindClose(hFindFile) == FALSE) { errno = GetLastError(); - return posix_error_with_filename(&name); + return posix_error_with_filename(name); } return d;