* Breakage caused by 2fe403e7 git-svn.perl: workaround assertions in svn library 1.5.0
@ 2008-07-09 0:41 Kevin Ballard
2008-07-16 13:45 ` SZEDER Gábor
0 siblings, 1 reply; 2+ messages in thread
From: Kevin Ballard @ 2008-07-09 0:41 UTC (permalink / raw)
To: Git Mailing List, pape
Commit 2fe403e7 causes `git svn info` and `git svn info .` to break.
Use of uninitialized value in localtime at /usr/local/libexec/git-
core/git-svn line 4277.
No such file or directory at /usr/local/libexec/git-core/git-svn
line 897.
If it makes a difference, I have svn 1.4.4 installed, not svn 1.5.
-Kevin Ballard
--
Kevin Ballard
http://kevin.sb.org
kevin@sb.org
http://www.tildesoft.com
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Breakage caused by 2fe403e7 git-svn.perl: workaround assertions in svn library 1.5.0
2008-07-09 0:41 Breakage caused by 2fe403e7 git-svn.perl: workaround assertions in svn library 1.5.0 Kevin Ballard
@ 2008-07-16 13:45 ` SZEDER Gábor
0 siblings, 0 replies; 2+ messages in thread
From: SZEDER Gábor @ 2008-07-16 13:45 UTC (permalink / raw)
To: Kevin Ballard; +Cc: Git Mailing List, pape, Eric Wong
Hi,
On Tue, Jul 08, 2008 at 05:41:48PM -0700, Kevin Ballard wrote:
> Commit 2fe403e7 causes `git svn info` and `git svn info .` to break.
>
> Use of uninitialized value in localtime at /usr/local/libexec/git-
> core/git-svn line 4277.
> No such file or directory at /usr/local/libexec/git-core/git-svn line
> 897.
>
> If it makes a difference, I have svn 1.4.4 installed, not svn 1.5.
the same problem here, except that I have svn v1.4.6.
The patch in question adds the following line to git-svn.perl's
canonicalize_path():
+ $path =~ s#^\.$##;
which makes an empty string from the path ".". This is especially
unfortunate for 'git svn info', cmd_info() begins with
my $path = canonicalize_path(shift or ".");
and from that point everything is ruined, but it boils out only when
it tries to actually open() the empty path.
Removing the mentioned line from canonicalize_path() does resolve this
issue on svn v1.4.6, but I'm afraid it will brake again on svn v1.5.
Gábor
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-16 13:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-09 0:41 Breakage caused by 2fe403e7 git-svn.perl: workaround assertions in svn library 1.5.0 Kevin Ballard
2008-07-16 13:45 ` SZEDER Gábor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).