// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: tagfile.cc,v 1.32 2002/03/26 07:22:31 jgg Exp $
+// $Id: tagfile.cc,v 1.37 2003/05/19 17:13:57 doogie Exp $
/* ######################################################################
Fast scanner for RFC-822 type header information
if (Tag.Scan(Start,End - Start) == false)
return _error->Error(_("Unable to parse package file %s (1)"),
Fd.Name().c_str());
- }
+ }
Start += Tag.size();
iOffset += Tag.size();
bool pkgTagFile::Fill()
{
unsigned long EndSize = End - Start;
+ unsigned long Actual = 0;
memmove(Buffer,Start,EndSize);
Start = Buffer;
if (Done == false)
{
// See if only a bit of the file is left
- unsigned long Actual;
if (Fd.Read(End,Size - (End - Buffer),&Actual) == false)
return false;
if (Actual != Size - (End - Buffer))
if (Done == true)
{
- if (EndSize <= 3)
+ if (EndSize <= 3 && Actual == 0)
return false;
if (Size - (End - Buffer) < 4)
return true;
if (Stop == 0)
return false;
- for (; Stop+1 < End && Stop[1] == '\r'; Stop++);
+ for (; Stop+1 < End && Stop[1] == '\r'; Stop++);
// Double newline marks the end of the record
if (Stop+1 < End && Stop[1] == '\n')