[openssl-commits] Fixed: openssl/openssl#14891 (master - f106f40)

Travis CI builds at travis-ci.org
Wed Nov 22 00:13:09 UTC 2017


Build Update for openssl/openssl
-------------------------------------

Build: #14891
Status: Fixed

Duration: 34 minutes and 22 seconds
Commit: f106f40 (master)
Author: Richard Levitte
Message: Avoid unnecessary MSYS2 conversion of some arguments

Fixes #4740

The MSYS2 run-time convert arguments that look like paths when
executing a program unless that application is linked with the MSYS
run-time.  The exact conversion rules are listed here:

    http://www.mingw.org/wiki/Posix_path_conversion

With the built-in configurations (all having names starting with
"mingw"), the openssl application is not linked with the MSYS2
run-time, and therefore, it will receive possibly converted arguments
from the process that executes it.  This conversion is fine for normal
path arguments, but it happens that some arguments to the openssl
application get converted when they shouldn't.  In one case, it's
arguments like '-passin file:something', and in another, it's a file:
URI (what typically happens is that URIs without an authority
component get converted, 'cause the conversion mechanism doesn't
recognise them as URIs).

To avoid conversion where we don't want it, we simply assign
MSYS2_ARG_CONV_EXCL a pattern to avoid specific conversions.  As a
precaution, we only do this where we obviously need it.

Reviewed-by: Andy Polyakov <appro at openssl.org>
Reviewed-by: Ben Kaduk <kaduk at mit.edu>
(Merged from https://github.com/openssl/openssl/pull/4765)

View the changeset: https://github.com/openssl/openssl/compare/281bf2332caa...f106f40694b6

View the full build log and details: https://travis-ci.org/openssl/openssl/builds/305544231?utm_source=email&utm_medium=notification

--

You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mta.openssl.org/pipermail/openssl-commits/attachments/20171122/1b5826d7/attachment.html>


More information about the openssl-commits mailing list