Patch from Trent Mick:

Fix a small bug in posixmodule.c where a char* is being
	dereferenced where it should not be.
This commit is contained in:
Andrew M. Kuchling 2000-06-06 20:52:17 +00:00
parent 28a5f44cca
commit 54c8dc2144
1 changed files with 1 additions and 1 deletions

View File

@ -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;