~nvalcarcel/ubuntu/lucid/openssl/openssl-merge

« back to all changes in this revision

Viewing changes to crypto/pqueue/pqueue.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-08-11 21:19:18 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090811211918-q52b1berxicp30hh
* Split all the patches into a separate files
* Stop undefinging HZ, the issue on alpha should be fixed.
* Remove MD2 from digest algorithm table.  (CVE-2009-2409) (Closes: #539899)

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
 
235
235
        return ret;
236
236
        }
237
 
 
238
 
int
239
 
pqueue_size(pqueue_s *pq)
240
 
{
241
 
        pitem *item = pq->items;
242
 
        int count = 0;
243
 
        
244
 
        while(item != NULL)
245
 
        {
246
 
                count++;
247
 
                item = item->next;
248
 
        }
249
 
        return count;
250
 
}