trunk/branch integration: fix typo (path/upath)

This commit is contained in:
Marian Krivos
2011-08-23 06:50:00 +00:00
parent 08d4ebe1cb
commit 7331a2cf49

View File

@@ -48,7 +48,7 @@ class FileHandle
public:
FileHandle(const std::string& path, DWORD access, DWORD share, DWORD disp)
{
_h = CreateFileA(upath.c_str(), access, share, 0, disp, 0, 0);
_h = CreateFileA(path.c_str(), access, share, 0, disp, 0, 0);
if (_h == INVALID_HANDLE_VALUE)
{
FileImpl::handleLastErrorImpl(path);