Add missing variable initialization in Dir class

This commit is contained in:
Robert Knight 2011-08-24 11:48:36 +01:00
parent a2ea1841b3
commit 887619f239

View file

@ -21,6 +21,7 @@ Dir::Dir(const char* path)
#ifdef PLATFORM_UNIX
m_dir = opendir(path);
m_entry = 0;
#else
// to list the contents of a directory, the first
// argument to FindFirstFile needs to be a wildcard