Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb787c55

Browse files
committed
Inhibit mingw CRT's auto-globbing of command line arguments
For some reason by default the mingw C Runtime takes it upon itself toexpand program arguments that look like shell globbing characters. Thathas caused much scratching of heads and mis-attribution of the causes ofsome TAP test failures, so stop doing that.This removes an inconsistency with Windows binaries built with MSVC,which have no such behaviour.Per suggestion from Noah Misch.Backpatch to all live branches.Discussion:https://postgr.es/m/20220423025927.GA1274057@rfd.leadboat.com
1 parentdec8ad3 commitb787c55

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎src/common/exec.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@
3333
#endif
3434
#endif
3535

36+
/* Inhibit mingw CRT's auto-globbing of command line arguments */
37+
#if defined(WIN32)&& !defined(_MSC_VER)
38+
externint_CRT_glob=0;/* 0 turns off globbing; 1 turns it on */
39+
#endif
40+
3641
/*
3742
* Hacky solution to allow expressing both frontend and backend error reports
3843
* in one macro call. First argument of log_error is an errcode() call of

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp