]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debsrcrecords.h
* add "purge" commandline argument, closes: #133421)
[apt.git] / apt-pkg / deb / debsrcrecords.h
index 51e0638127593df7d96dab6e20535c14aa76d17d..8b1237ccdc6686a9efb359ce5a391acb95b31de5 100644 (file)
@@ -21,9 +21,10 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
    FileFd Fd;
    pkgTagFile Tags;
    pkgTagSection Sect;
-   char Buffer[10000];
    char *StaticBinList[400];
    unsigned long iOffset;
+   char *Buffer;
+   unsigned int BufSize;
    
    public:
 
@@ -46,10 +47,9 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
    };
    virtual bool Files(vector<pkgSrcRecords::File> &F);
 
-   debSrcRecordParser(string File,pkgIndexFile const *Index) :
-                   Parser(Index),      
-                   Fd(File,FileFd::ReadOnly),
-                   Tags(&Fd,102400) {};
+   debSrcRecordParser(string File,pkgIndexFile const *Index) 
+      : Parser(Index), Fd(File,FileFd::ReadOnly), Tags(&Fd,102400), 
+        Buffer(0), BufSize(0) {}
 };
 
 #endif