1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Small fix to fs::GetDirListing when trying to list an inexistent directory

This commit is contained in:
Perttu Ahola 2012-03-25 23:16:53 +03:00
parent 728d01ef4b
commit dcef5183f7

View File

@ -74,9 +74,8 @@ std::vector<DirListNode> GetDirListing(std::string pathstring)
if (hFind == INVALID_HANDLE_VALUE)
{
errorstream<<"GetDirListing: Invalid file handle. Error is "
<<GetLastError()<<std::endl;
retval = (-1);
retval = (-1);
goto Cleanup;
}
else
{