* path.cc (mount_info::from_fstab): Get module path name of the Cygwin
DLL, not the path of the application.
This commit is contained in:
parent
ba047ace14
commit
0c273f5ac3
|
@ -1,3 +1,8 @@
|
|||
2008-04-03 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* path.cc (mount_info::from_fstab): Get module path name of the Cygwin
|
||||
DLL, not the path of the application.
|
||||
|
||||
2008-04-03 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
Cleanup.
|
||||
|
|
|
@ -2430,7 +2430,8 @@ mount_info::from_fstab (bool user)
|
|||
PWCHAR path = tp.w_get ();
|
||||
PWCHAR w;
|
||||
|
||||
if (!GetModuleFileNameW (NULL, path, NT_MAX_PATH))
|
||||
if (!GetModuleFileNameW (GetModuleHandleW (L"cygwin1.dll"),
|
||||
path, NT_MAX_PATH))
|
||||
{
|
||||
debug_printf ("GetModuleFileNameW, %E");
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue