ntdll: Actually return the mount point in get_device_mount_point on Mac OS.

This commit is contained in:
Alexandre Julliard 2013-09-04 16:28:10 +02:00
parent dee3418d3a
commit 6666614a19
1 changed files with 2 additions and 2 deletions

View File

@ -781,8 +781,8 @@ static char *get_device_mount_point( dev_t dev )
if (stat( entry[i].f_mntfromname, &st ) == -1) continue;
if (S_ISBLK(st.st_mode) && st.st_rdev == dev)
{
ret = RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry[i].f_mntfromname) + 1 );
if (ret) strcpy( ret, entry[i].f_mntfromname );
ret = RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry[i].f_mntonname) + 1 );
if (ret) strcpy( ret, entry[i].f_mntonname );
break;
}
}