summaryrefslogtreecommitdiff
path: root/apt-pkg/tagfile.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:54:11 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:54:11 +0000
commit29f7b36cd63f16ceab825531b5c131eac4b99f9b (patch)
tree178ade1647b9c367bda22bbb721c329766cc675e /apt-pkg/tagfile.h
parentca17762a741f8ca967e5021073837ce5463b1e92 (diff)
Fixed a small memory leak
Author: jgg Date: 1999-07-03 06:45:40 GMT Fixed a small memory leak
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r--apt-pkg/tagfile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h
index 82c856f8d..84998629d 100644
--- a/apt-pkg/tagfile.h
+++ b/apt-pkg/tagfile.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: tagfile.h,v 1.13 1998/12/14 02:23:47 jgg Exp $
+// $Id: tagfile.h,v 1.14 1999/07/03 06:45:40 jgg Exp $
/* ######################################################################
Fast scanner for RFC-822 type header information
@@ -81,8 +81,9 @@ class pkgTagFile
bool Step(pkgTagSection &Section);
inline unsigned long Offset() {return iOffset;};
bool Jump(pkgTagSection &Tag,unsigned long Offset);
-
+
pkgTagFile(FileFd &F,unsigned long Size = 32*1024);
+ ~pkgTagFile();
};
#endif