summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5dc1308)
raw | patch | inline | side by side (parent: 5dc1308)
author | Eric Wong <normalperson@yhbt.net> | |
Sun, 25 Jan 2009 23:35:52 +0000 (15:35 -0800) | ||
committer | Eric Wong <normalperson@yhbt.net> | |
Mon, 26 Jan 2009 01:01:47 +0000 (17:01 -0800) |
By enforcing SVN::Pool usage when calling get_file once again.
This regression was introduced with the reintroduction of
SVN::Ra::get_file() usage in
dbc6c74d0858d77e61e092a48d467e725211f8e9
Signed-off-by: Eric Wong <normalperson@yhbt.net>
This regression was introduced with the reintroduction of
SVN::Ra::get_file() usage in
dbc6c74d0858d77e61e092a48d467e725211f8e9
Signed-off-by: Eric Wong <normalperson@yhbt.net>
git-svn.perl | patch | blob | history |
diff --git a/git-svn.perl b/git-svn.perl
index d4cb538b93418ccb6205181d0c54932f92d3962f..5d39b391d1b03a11c0d6c27475934430229b6fe6 100755 (executable)
--- a/git-svn.perl
+++ b/git-svn.perl
BEGIN {
# enforce temporary pool usage for some simple functions
no strict 'refs';
- for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root/) {
+ for my $f (qw/rev_proplist get_latest_revnum get_uuid get_repos_root
+ get_file/) {
my $SUPER = "SUPER::$f";
*$f = sub {
my $self = shift;