Commit c6f05023 authored by 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.
parent 654faa9f
......@@ -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