Kaydet (Commit) 54c8dc21 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Patch from Trent Mick:

	Fix a small bug in posixmodule.c where a char* is being
	dereferenced where it should not be.
üst 28a5f44c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment