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: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 AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , 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-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 AT cygwin DOT com References: From: David Rothenberger 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: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Reply-To: cygwin AT cygwin DOT 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 AT acm DOT 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