delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2019/12/04/16:03:54

X-Recipient: archive-cygwin AT delorie DOT com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:date:from:reply-to:to:subject:message-id
:reply-to:mime-version:content-type; q=dns; s=default; b=gpqiJLw
+5GGUO2cQNYy65ZLddQ7JZH7wS8bvZgYeQ9EulMMljyyQPxPypi5alkoj9vFBXkb
i3E/V5SNNe6/aF0Mu0I06JQpAe3vgbZ2IkgNxahD0n+sbHeIv56CviZKlp0J/CEz
vSghoRManhNZCHVvXkT+/e48gU46qP8husm8=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:date:from:reply-to:to:subject:message-id
:reply-to:mime-version:content-type; s=default; bh=S0wdqOUp6WYsG
zNDDUAlbuYMMdc=; b=Q4Ovuz6/1AujflddQM8j0ALg564ocuBjbSrzoRRg0hCkQ
Z9uAycXkQjzcb9faxT6pl7kf1cyNICGPORa7vv5zRhvUQJQlEkNIgZ7s82QhNnJC
bVVBVTGpaOKGBpWB4cWubibhooz7E6c5YpVi6keJLk8f6BVLPZINOSOEx4QucU=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
Authentication-Results: sourceware.org; auth=none
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=AWL,BAYES_00,FAKE_REPLY_C,RCVD_IN_DNSWL_LOW,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 spammy=
X-HELO: sa-prd-fep-048.btinternet.com
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=btinternet.com; s=btmx201904; t=1575493381; bh=bbi0LPjy6PRLRQIW86nQBNwajfv7lrstWV38qkSo7wE=; h=Date:From:To:Subject:Message-ID:Reply-To:MIME-Version; b=oJG91o7qRkQiw66abn/Q+y7xBvPU/8mT/x/OM7cvVcvR2hL+7d4hkwQCHrZ9PESDUBSTffHsjHKd7AW4Qio2IrPjmt3cmwg7LChaUEorrwiS7O2GgZh6y0twR0bj7r3lIJqHlyehV4TZiQB+EmKdwW5bpMXhvM9N5re0jz1NSq9FSDNrehN+dmfmZT5qOGR9zVqa+mHgMshanvSNouLHXJdAf0BJvQ9tgBTrQBgVw0i3ZMMnYdLgZPccBDNw4Rdgq9rfsWj5xOglnw3PeeOUni45N+saAKW61l/J3qq9Mpr0L/qCs8SsjSO+WvwZoL1XrfshdsQcSsyhwidtg1YZSw==
Authentication-Results: btinternet.com; auth=pass (LOGIN) smtp.auth=olaf DOT sulla AT btinternet DOT com
X-OWM-Source-IP: 86.156.173.167 (GB)
X-OWM-Env-Sender: olaf DOT sulla AT btinternet DOT com
X-VadeSecure-score: verdict=clean score=0/300, class=clean
Date: Wed, 4 Dec 2019 21:02:22 +0000
From: "Wilfed Olaf Sulla via cygwin" <cygwin AT cygwin DOT com>
Reply-To: Wilfed Olaf Sulla <olaf DOT sulla AT btinternet DOT com>
To: Cygwin <cygwin AT cygwin DOT com>
Subject: Re: 3.0.7(0.338/5/3): Possible reference to Developer's instances of dev files in deployed build
Message-ID: <20191204210222.GA3578@shackleton.labs.net>
Reply-To: Wilfed Olaf Sulla <olaf DOT sulla AT btinternet DOT com>
MIME-Version: 1.0
User-Agent: Mutt/1.12.1 (2019-06-15)

>On 12/4/2019 2:26 PM, Wilfed Olaf Sulla via cygwin wrote:
>>    692   83364 [main] ls 15015 normalize_posix_path: src Z:\
>>     35   83399 [main] ls 15015 normalize_win32_path: Z:\ = normalize_win32_path (Z:\)
>>     24   83423 [main] ls 15015 mount_info::conv_to_win32_path: conv_to_win32_path (Z:)
>>     24   83447 [main] ls 15015 mount_info::conv_to_win32_path: src_path Z:, dst Z:, flags 0x0, rc 0
>>   6738   90185 [main] ls 15015 symlink_info::check: 0xC0000034 = NtCreateFile (\??\Z:\)
>>    214   90399 [main] ls 15015 __assert_func: assertion "p >= path" failed:
>
>I don't have time to check this carefully at the moment, but it looks like 
>what's happening is the following:
>
>path_conv::check is called on 'Z:\'.  It strips the trailing backslash and calls 
>mount_info::conv_to_win32_path on 'Z:'.  NtCreateFile fails with 
>STATUS_OBJECT_NAME_NOT_FOUND, which triggers the code containing the assertion. 
>The assertion fails because 'Z:' doesn't contain a backslash.
>
>I'll have time tomorrow to think about how to best fix this, if Corinna doesn't 
>get to it first.
>
>Ken
>
>--
>Problem reports:       http://cygwin.com/problems.html
>FAQ:                   http://cygwin.com/faq/
>Documentation:         http://cygwin.com/docs.html
>Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Hi,

Yes I noticed that, but it also strips the trailing back-slash for all
of the other virtual drives at the same stage in the checks on them as
well.


-- 

Mutt 1.12.1 (2019-06-15)

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019