diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:27 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:27 +0000 |
commit | 0140895997bdb6f5c836adfd83604f77ebde1f0a (patch) | |
tree | 5e00f3bc23179146c61604666aa10adb9d9ca48f /apt-pkg | |
parent | 6e52073fac7be205251b222f63cf2f61d1519364 (diff) |
Small segv bug fix
Author: jgg
Date: 1999-08-03 02:25:38 GMT
Small segv bug fix
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-worker.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 166055bfc..7fdb03aa6 100644 --- a/apt-pkg/acquire-worker.cc +++ b/apt-pkg/acquire-worker.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-worker.cc,v 1.24 1999/07/30 05:36:52 jgg Exp $ +// $Id: acquire-worker.cc,v 1.25 1999/08/03 02:25:38 jgg Exp $ /* ###################################################################### Acquire Worker @@ -245,10 +245,10 @@ bool pkgAcquire::Worker::RunMessages() break; } + Pulse(); pkgAcquire::Item *Owner = Itm->Owner; pkgAcquire::ItemDesc Desc = *Itm; OwnerQ->ItemDone(Itm); - Pulse(); if (TotalSize != 0 && atoi(LookupTag(Message,"Size","0").c_str()) != TotalSize) _error->Warning("Bizzar Error - File size is not what the server reported %s %u", |