diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:36 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:36 +0000 |
commit | b8b7c37d8931126f4536b7350c7611a9fa98e04a (patch) | |
tree | 6cf13d22660939d979686dde8e25e0759db59c44 /apt-pkg/tagfile.cc | |
parent | 6778020c7eca2d704604ad38b20bc1fb3f3a24fb (diff) |
Fix some unlikely segfaults
Author: jgg
Date: 2002-11-06 06:43:14 GMT
Fix some unlikely segfaults
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index e3d83d334..da520ed81 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.cc,v 1.34 2002/07/08 03:39:06 jgg Exp $ +// $Id: tagfile.cc,v 1.35 2002/11/06 06:43:14 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -197,7 +197,7 @@ bool pkgTagSection::Scan(const char *Start,unsigned long MaxLength) 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') |