From 4a6d5862ef735b34896c44744acbf1b6b6d3ee15 Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Mon, 20 Sep 2004 16:53:09 +0000 Subject: Wichert and Espys bugs Author: jgg Date: 1999-03-17 03:25:25 GMT Wichert and Espys bugs --- apt-pkg/contrib/fileutl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apt-pkg') diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index a28dce6c0..0839cc963 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.cc,v 1.23 1999/03/16 00:43:55 jgg Exp $ +// $Id: fileutl.cc,v 1.24 1999/03/17 03:25:25 jgg Exp $ /* ###################################################################### File Utilities @@ -45,7 +45,7 @@ bool CopyFile(FileFd &From,FileFd &To) if (Size > 64000) ToRead = 64000; - if (To.Read(Buf,ToRead) == false || + if (From.Read(Buf,ToRead) == false || To.Write(Buf,ToRead) == false) { delete [] Buf; -- cgit v1.2.3