summaryrefslogtreecommitdiff
path: root/apt-pkg/sourcelist.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:59:17 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:59:17 +0000
commit1c193e02ec0d090eeae62f371b2942e74dab48b1 (patch)
treea924136f6434fcf88d565fef2970934e3fa1c908 /apt-pkg/sourcelist.h
parentf5ec3b68c582138acce7c5a93e473dde50ab8354 (diff)
Fix small memory leak in the sourcelist
Author: jgg Date: 2002-07-01 21:41:11 GMT Fix small memory leak in the sourcelist
Diffstat (limited to 'apt-pkg/sourcelist.h')
-rw-r--r--apt-pkg/sourcelist.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h
index 8e0cb7aa3..307b12133 100644
--- a/apt-pkg/sourcelist.h
+++ b/apt-pkg/sourcelist.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: sourcelist.h,v 1.11 2001/05/07 04:24:08 jgg Exp $
+// $Id: sourcelist.h,v 1.12 2002/07/01 21:41:11 jgg Exp $
/* ######################################################################
SourceList - Manage a list of sources
@@ -106,7 +106,8 @@ class pkgSourceList
bool GetIndexes(pkgAcquire *Owner) const;
pkgSourceList();
- pkgSourceList(string File);
+ pkgSourceList(string File);
+ ~pkgSourceList();
};
#endif