Re: git-svn failure when symlink added in svn
From: Seth Falcon <hidden>
Date: 2016-06-15 22:43:07
Eric Wong [off-list ref] writes:
Junio C Hamano [off-list ref] wrote:quoted
Eric Wong [off-list ref] writes:quoted
Junio C Hamano [off-list ref] wrote:quoted
diff --git a/git-svn.perl b/git-svn.perl index 4be8576..cef6697 100755 --- a/git-svn.perl +++ b/git-svn.perl@@ -2464,15 +2464,15 @@ sub close_file { my $hash; my $path = $self->git_path($fb->{path}); if (my $fh = $fb->{fh}) { - seek($fh, 0, 0) or croak $!; + sysseek($fh, 0, 0) or croak $!; my $md5 = Digest::MD5->new; $md5->addfile($fh);We may want to keep the plain seek() here and do both seek and sysseek, I'm not sure if $md5->addfile() uses read or sysread internally.Ok. The seek before Digest::MD5 can stay as it has been that way for a long time without causing problems. How about this as an replacement then?Looks good to me. Seth?
The test cases passes as does the small example I had come up with. I also tried doing a git svn clone on a small repos and checking that the resulting HEAD was the same as a previously created one (it was).
If Seth is okay with it, then: Acked-by: Eric Wong <redacted>
Acked-by: Seth Falcon <redacted> + seth