-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit b453694
Rollup merge of #103360 - ChrisDenton:isterm-filetype, r=thomcc
Reduce false positives in msys2 detection
Currently msys2 will be detected by getting the file path and looking to see if it contains the substrings "msys-" and "-ptr" (or "cygwin-" and "-pty"). This risks false positives, especially with filesystem files and if `GetFileInformationByHandleEx` returns a [full path](https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/nf-ntifs-ntqueryinformationfile#remarks).
This PR adds a check to see if the handle is a pipe before doing the substring search. Additionally, for "msys2-" or "cygwin-" it only checks if the file name starts with the substring rather than looking at the whole path.2 files changed
+12
-2
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
129 | 129 |
| |
130 | 130 |
| |
131 | 131 |
| |
132 | + | ||
133 | + | ||
132 | 134 |
| |
133 | 135 |
| |
134 | 136 |
| |
| |||
1114 | 1116 |
| |
1115 | 1117 |
| |
1116 | 1118 |
| |
1119 | + | ||
1117 | 1120 |
| |
1118 | 1121 |
| |
1119 | 1122 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
123 | + | ||
124 | + | ||
125 | + | ||
126 | + | ||
127 | + | ||
123 | 128 |
| |
124 | 129 |
| |
125 | 130 |
| |
| |||
137 | 142 |
| |
138 | 143 |
| |
139 | 144 |
| |
145 | + | ||
146 | + | ||
140 | 147 |
| |
141 | 148 |
| |
142 | 149 |
| |
143 | - | ||
144 | - | ||
150 | + | ||
151 | + | ||
145 | 152 |
| |
146 | 153 |
| |
147 | 154 |
|
0 commit comments