* path.cc (path_conv::is_binary): Fix test. Add comment.

This commit is contained in:
Corinna Vinschen 2008-07-02 14:00:27 +00:00
parent 278101de7f
commit bb82bbe6ff
2 changed files with 8 additions and 2 deletions

View File

@ -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>
* net.cc (cygwin_bindresvport_sa): Fix usage of last_used_bindresvport.

View File

@ -1314,9 +1314,11 @@ path_conv::is_binary ()
tmp_pathbuf tp;
PWCHAR bintest = tp.w_get ();
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
&& 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.