* path.cc (path_conv::is_binary): Fix test. Add comment.
This commit is contained in:
parent
278101de7f
commit
bb82bbe6ff
|
@ -1,3 +1,7 @@
|
||||||
|
2008-07-02 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* path.cc (path_conv::is_binary): Fix test. Add comment.
|
||||||
|
|
||||||
2008-06-24 Corinna Vinschen <corinna@vinschen.de>
|
2008-06-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* net.cc (cygwin_bindresvport_sa): Fix usage of last_used_bindresvport.
|
* net.cc (cygwin_bindresvport_sa): Fix usage of last_used_bindresvport.
|
||||||
|
|
|
@ -1314,9 +1314,11 @@ path_conv::is_binary ()
|
||||||
tmp_pathbuf tp;
|
tmp_pathbuf tp;
|
||||||
PWCHAR bintest = tp.w_get ();
|
PWCHAR bintest = tp.w_get ();
|
||||||
DWORD bin;
|
DWORD bin;
|
||||||
|
/* Do NOT check for .exe suffix, otherwise rename(2) misbehaves
|
||||||
|
when renaming files to existing executables with omitted suffix.
|
||||||
|
strip(1) is a candidate uncovering wrong behaviour here. */
|
||||||
return exec_state () == is_executable
|
return exec_state () == is_executable
|
||||||
&& RtlEqualUnicodePathSuffix (get_nt_native_path (), L".exe", TRUE)
|
|| GetBinaryTypeW (get_wide_win32_path (bintest), &bin);
|
||||||
&& GetBinaryTypeW (get_wide_win32_path (bintest), &bin);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Normalize a Win32 path.
|
/* Normalize a Win32 path.
|
||||||
|
|
Loading…
Reference in New Issue