Skip to content

Commit

Permalink
common: Fix GetFinalPathNameByHandle invocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed Apr 27, 2015
1 parent 12c8a91 commit 000914a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ GetFileNameFromHandle(HANDLE hFile,
}
}
if (pfnGetFinalPathNameByHandle) {
return GetFinalPathNameByHandle(hFile, lpszFilePath, cchFilePath, 0) < cchFilePath;
return pfnGetFinalPathNameByHandle(hFile, lpszFilePath, cchFilePath, 0) < cchFilePath;
}

DWORD dwFileSizeHi = 0;
Expand Down

0 comments on commit 000914a

Please sign in to comment.