2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-20 14:42:14 +00:00

Merge from trunk

[SVN r34087]
This commit is contained in:
Vladimir Prus
2006-05-25 08:14:57 +00:00
parent a8e8f737ea
commit 5b27dbf6af

View File

@@ -287,11 +287,11 @@ path_parent( PATHNAME *f )
DWORD ShortPathToLongPath(LPCTSTR lpszShortPath,LPTSTR lpszLongPath,DWORD
cchBuffer)
{
DWORD i=0;
LONG i=0;
TCHAR path[_MAX_PATH]={0};
TCHAR ret[_MAX_PATH]={0};
DWORD pos=0, prev_pos=0;
DWORD len=_tcslen(lpszShortPath);
LONG pos=0, prev_pos=0;
LONG len=_tcslen(lpszShortPath);
/* Is the string valid? */
if (!lpszShortPath) {