[svk-commit] r2250 - branches/2.0-releng/lib/SVK/Mirror/Backend

nobody at bestpractical.com nobody at bestpractical.com
Wed Dec 20 09:44:02 EST 2006


Author: clkao
Date: Wed Dec 20 09:44:01 2006
New Revision: 2250

Modified:
   branches/2.0-releng/lib/SVK/Mirror/Backend/SVNRaPipe.pm

Log:
Fix a bug that tmp files for large delta over pipeline aren't deleted.

Modified: branches/2.0-releng/lib/SVK/Mirror/Backend/SVNRaPipe.pm
==============================================================================
--- branches/2.0-releng/lib/SVK/Mirror/Backend/SVNRaPipe.pm	(original)
+++ branches/2.0-releng/lib/SVK/Mirror/Backend/SVNRaPipe.pm	Wed Dec 20 09:44:01 2006
@@ -287,7 +287,7 @@
 		open my $fh, '<', $svndiff or die $!;
 		slurp_fh($fh, $stream);
 		close $fh;
-		unlink $fh;
+		unlink $svndiff;
 	    }
 	    close $stream;
 	}


More information about the svk-commit mailing list