1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-17 14:34:49 +01:00

Merge branch 'master' into next

* master:
  cvsimport: do not barf on creation of an empty file.
This commit is contained in:
Junio C Hamano 2006-05-23 16:31:05 -07:00
commit 17cf39294a

View file

@ -371,7 +371,7 @@ sub file {
}
sub _fetchfile {
my ($self, $fh, $cnt) = @_;
my $res;
my $res = 0;
my $bufsize = 1024 * 1024;
while($cnt) {
if ($bufsize > $cnt) {