Re: svn commit: r1701633 - /subversion/trunk/subversion/libsvn_subr/stream.c

2015-09-08 Thread Ivan Zhakov
On 7 September 2015 at 18:06, wrote: > Author: kotkov > Date: Mon Sep 7 15:06:57 2015 > New Revision: 1701633 > > URL: http://svn.apache.org/r1701633 > Log: > Fix svn_stream_for_stdin() and related functions for STDOUT and STDERR > that were returning streams with mark() and

Re: Access denied error on checkout-commit after updating to 1.9.X

2015-09-08 Thread Ivan Zhakov
On 7 September 2015 at 19:45, Ivan Zhakov wrote: > [Moving to dev@s.a.o] > > On 4 September 2015 at 18:15, Daniele Pedroni > wrote: >> After updating from 1.8.X to 1.9.X (tried also 1.9.1, no luck), TortoiseSVN >> as well as command line throw the

JavaHL: Hard crash in libsvn_subr-1.dll

2015-09-08 Thread Thomas Singer
We've got the attached bug report where libsvn_subr-1.dll crashes. Unfortunately, I have no idea how to reproduce. -- Best regards, Thomas Singer = syntevo GmbH http://www.syntevo.com http://www.syntevo.com/blog # # A fatal error has been detected by the Java Runtime Environment: #

Re: svn commit: r1701633 - /subversion/trunk/subversion/libsvn_subr/stream.c

2015-09-08 Thread Ivan Zhakov
On 8 September 2015 at 14:10, Evgeny Kotkov wrote: > Ivan Zhakov writes: > >> It may be worth to introduce local helper like >> 'make_stream_from_apr_file(svn_boolean_t supports_seek)' and use it in >> svn_stream_from_apr_file2() and

Re: svn commit: r1701633 - /subversion/trunk/subversion/libsvn_subr/stream.c

2015-09-08 Thread Stefan Fuhrmann
On Tue, Sep 8, 2015 at 11:21 AM, Ivan Zhakov wrote: > On 7 September 2015 at 18:06, wrote: > > Author: kotkov > > Date: Mon Sep 7 15:06:57 2015 > > New Revision: 1701633 > > > > URL: http://svn.apache.org/r1701633 > > Log: > > Fix svn_stream_for_stdin()

Re: Announcing MaxSVN

2015-09-08 Thread Ivan Zhakov
On 7 September 2015 at 18:47, Stefan wrote: > Hi, > > I'm pleased to announce the availability of a new distribution of SVN > called: "MaxSVN". > In contrast to other SVN distributions this one is a bit different since it > aims towards being used primarily to support SVN

Re: svn commit: r1700799 - in /subversion/trunk/subversion: include/svn_io.h libsvn_subr/stream.c svnadmin/svnadmin.c svnfsfs/load-index-cmd.c tests/libsvn_subr/stream-test.c

2015-09-08 Thread Stefan Fuhrmann
On Mon, Sep 7, 2015 at 6:38 PM, Evgeny Kotkov wrote: > Stefan Fuhrmann writes: > > > That is indeed a good idea, so I tried it in various ways: > > > > Index: subversion/libsvn_subr/stream.c > >

Re: svn commit: r1701633 - /subversion/trunk/subversion/libsvn_subr/stream.c

2015-09-08 Thread Evgeny Kotkov
Ivan Zhakov writes: > It may be worth to introduce local helper like > 'make_stream_from_apr_file(svn_boolean_t supports_seek)' and use it in > svn_stream_from_apr_file2() and svn_stream_for_stdin() instead of > clearing mark/seek handlers after calling

svnfsfs stats division by zero on empty repository

2015-09-08 Thread Philip Martin
$ svnadmin create repo $ svnfsfs stats repo ... Extensions by number of representations: Floating point exception Program received signal SIGFPE, Arithmetic exception. 0x0040311c in print_extensions_by_changes (stats=0x61bf10, pool=0x60c450) at

Re: svn commit: r1701633 - /subversion/trunk/subversion/libsvn_subr/stream.c

2015-09-08 Thread Evgeny Kotkov
Ivan Zhakov writes: >> Indeed, I missed that default skip_handler_apr() performs a seek that could >> be unavailable or behave surprisingly when used with a handle like STDIN. >> So, the fix is partial. >> >> What do you think about the attached patch? >> > Looks good for me.