diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-04-22 17:59:09 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-04-22 21:58:26 +0200 |
commit | feab34c5216941ca95aae1a389238a77b662d1de (patch) | |
tree | 3aee2587ca28cfa62421d076d40d81060a0579c4 /apt-pkg/tagfile.cc | |
parent | 5572f6bdcb947e11f32e2a035438d9d3899ad46d (diff) |
add support for apt-get build-dep foo.dsc
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 91d176e3c..009ed7d74 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -51,12 +51,23 @@ public: // --------------------------------------------------------------------- /* */ pkgTagFile::pkgTagFile(FileFd *pFd,unsigned long long Size) + : d(NULL) +{ + Init(pFd, Size); +} + +void pkgTagFile::Init(FileFd *pFd,unsigned long long Size) { /* The size is increased by 4 because if we start with the Size of the filename we need to try to read 1 char more to see an EOF faster, 1 char the end-pointer can be on and maybe 2 newlines need to be added to the end of the file -> 4 extra chars */ Size += 4; + if(d != NULL) + { + free(d->Buffer); + delete d; + } d = new pkgTagFilePrivate(pFd, Size); if (d->Fd.IsOpen() == false) |