summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_process.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fhandler_process.cc')
-rw-r--r--winsup/cygwin/fhandler_process.cc15
1 files changed, 5 insertions, 10 deletions
diff --git a/winsup/cygwin/fhandler_process.cc b/winsup/cygwin/fhandler_process.cc
index a752bfb1c..b64f22175 100644
--- a/winsup/cygwin/fhandler_process.cc
+++ b/winsup/cygwin/fhandler_process.cc
@@ -446,17 +446,12 @@ fhandler_process::fill_filebuf ()
else
{
mount_table->conv_to_posix_path (p->progname, filebuf, 1);
- /* If transparent_exe isn't set, the link keeps its suffix so that
- an open(2) call will succeed on /proc/$PID/exe. */
- if (transparent_exe)
+ int len = strlen (filebuf);
+ if (len > 4)
{
- int len = strlen (filebuf);
- if (len > 4)
- {
- char *s = filebuf + len - 4;
- if (ascii_strcasematch (s, ".exe"))
- *s = 0;
- }
+ char *s = filebuf + len - 4;
+ if (ascii_strcasematch (s, ".exe"))
+ *s = 0;
}
}
filesize = strlen (filebuf);