On 2021/01/26 14:54:04, Johan Corveleyn <jcor...@gmail.com> wrote: 
> On Thu, Dec 24, 2020 at 10:25 AM Johan Corveleyn <jcor...@gmail.com> wrote:
> > On Wed, Dec 23, 2020 at 8:17 PM William A Rowe Jr <wr...@rowe-clan.net> 
> > wrote:
> > >
> > > Sorry, I'd been pounding on a beta deliverable, it's my bad. This coming 
> > > week I have cycles to give
> > > back to APR, CMake and other projects neglected during this crunch 
> > > period. I hope an end-of-year
> > > (or very early January) release will meet your goals..
> >
> > Yes, thanks, and no problem. I think that might be just in time, so
> > I'm crossing my fingers :-).
> >
> > (as you might know, Subversion development is going quite slowly these
> > days, so it's hard to say when the cycles of the different volunteers
> > will align -- it might be end of this year still, but I'm guessing
> > it's more likely to be early January too I think ... we're progressing
> > with small steps here and there)
Hi,
Maybe problem is in this line 627 in filestat.c [1] (changed in revision [2]) 
mainly by adding APR_FINFO_LINK in line 627 

Diff to prev: [3]
I think that this change is causing that "if" branch is not executed (svn is 
using APR_FINFO_LINK in call) and in "else" branch we get error from 
FindFirstFileW [6] because root (e.g. after subst) is ending with "/" or "\" as 
in example from [4]) 
The error code 720002 from apr_stat means ERROR_FILE_NOT_FOUND (code 2 (0x2) 
[5]) from FindFirstFileW plus some adding and multiplication operations in apr 
layer (last digit in 720002 is code 2).

[1] - 
https://svn.apache.org/viewvc/apr/apr/branches/1.7.x/file_io/win32/filestat.c?view=markup#l627
[2] - https://svn.apache.org/r1855950
[3] - 
https://svn.apache.org/viewvc/apr/apr/branches/1.7.x/file_io/win32/filestat.c?r1=1795930&r2=1855950&pathrev=1855950&diff_format=h
[4] - 
https://lists.apache.org/thread.html/rd890d13b826e8cd7acaa96769e10e7143b7e35e11c99bcaa1a75d481%40%3Cdev.apr.apache.org%3E
[5] - 
https://docs.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-
[6] - 
https://svn.apache.org/viewvc/apr/apr/branches/1.7.x/file_io/win32/filestat.c?view=markup#l642

Regards,
Mariusz

Reply via email to