Commit 6666614a authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent dee3418d
...@@ -781,8 +781,8 @@ static char *get_device_mount_point( dev_t dev ) ...@@ -781,8 +781,8 @@ static char *get_device_mount_point( dev_t dev )
if (stat( entry[i].f_mntfromname, &st ) == -1) continue; if (stat( entry[i].f_mntfromname, &st ) == -1) continue;
if (S_ISBLK(st.st_mode) && st.st_rdev == dev) if (S_ISBLK(st.st_mode) && st.st_rdev == dev)
{ {
ret = RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry[i].f_mntfromname) + 1 ); ret = RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry[i].f_mntonname) + 1 );
if (ret) strcpy( ret, entry[i].f_mntfromname ); if (ret) strcpy( ret, entry[i].f_mntonname );
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment