X-Recipient: archive-cygwin@delorie.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:subject:to:references:from:message-id:date
	:mime-version:in-reply-to:content-type:content-transfer-encoding
	:reply-to; q=dns; s=default; b=h4Pxzc96FMgF8+WV3u10uvzHaGROkcc1d
	i5jgLsweI55CuOuWGnfXjnb8HkdC1/xB+An8OkCzMEN8KlNywi7U4lWSdQUuN4Lq
	acaLjmx6iQS3FPQVBQnrE8cddaZUMBRSuY+D4f5wstPEmqpRJt4nYb3qf51JYrX0
	VfrLENLxRE=
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:subject:to:references:from:message-id:date
	:mime-version:in-reply-to:content-type:content-transfer-encoding
	:reply-to; s=default; bh=V8Epz4tSTGoU/7gMLmeNM4SMoSk=; b=uY8mVnR
	hvBWGf3sYOKEb/0R6G/18nJRBfO/+y7TlR3KyvrQ4uEOiepBedOe/bHzevDglRAn
	dKGJL28PyqyqNx759IuzHi66z8sbpyefLTmZYFN6PNSI3LP2tvktOZdCFlEpFKpJ
	vv/BbFMRXrpHVp5JZIykitG11MutGFZILrTk=
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.7 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2
X-HELO: resqmta-po-11v.sys.comcast.net
Subject: Re: svn1.9.1, segmentation fault when calling "svn diff -c .", on MS Windows7
To: cygwin@cygwin.com
References: <CALeH8PASOFdhH5b46oAPahGerTgbacGO0hot84hyWSZgxFJXRA@mail.gmail.com>
From: David Rothenberger <daveroth@acm.org>
X-Enigmail-Draft-Status: N1110
Message-ID: <55F1BD7E.3090808@acm.org>
Date: Thu, 10 Sep 2015 10:27:26 -0700
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0
MIME-Version: 1.0
In-Reply-To: <CALeH8PASOFdhH5b46oAPahGerTgbacGO0hot84hyWSZgxFJXRA@mail.gmail.com>
Content-Type: text/plain; charset=windows-1252
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Reply-To: cygwin@cygwin.com

Wb Yang wrote:
> Segmentation fault happens 100% when calling:
> 
> svn diff -c .

"svn diff -c ." is not a valid command. The "-c" switch expects a
numeric argument. I get an error message when I try it, not a segfault.

Does this recipe work for you?

% mkdir /tmp/svn
% cd /tmp/svn
% svnadmin create repos
% r=file:///tmp/svn/repos
% svn co $r work
Checked out revision 0.
% cd work
% date > file
% svn add file
A         file
% svn commit -m 1
Adding         file
Transmitting file data .done
Committing transaction...
Committed revision 1.
% date > file
% svn diff -c .
svn: E205000: Non-numeric change argument (.) given to -c
% svn diff -c 1
Index: file
===================================================================
--- file        (nonexistent)
+++ file        (revision 1)
@@ -0,0 +1 @@
+Thu, Sep 10, 2015 10:23:38 AM


-- 
David Rothenberger  ----  daveroth@acm.org

Cygwin Subversion maintainer


--
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

