diff options
Diffstat (limited to 'security/openssl/patches/patch-ax')
-rw-r--r-- | security/openssl/patches/patch-ax | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/security/openssl/patches/patch-ax b/security/openssl/patches/patch-ax deleted file mode 100644 index b710884ea85..00000000000 --- a/security/openssl/patches/patch-ax +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ax,v 1.1 2009/06/10 13:57:08 tez Exp $ - -Part of CVE-2009-1377 fix. - ---- crypto/pqueue/pqueue.c.orig 2009-06-08 18:55:59.826213100 -0500 -+++ crypto/pqueue/pqueue.c -@@ -234,3 +234,17 @@ pqueue_next(pitem **item) - - return ret; - } -+ -+int -+pqueue_size(pqueue_s *pq) -+{ -+ pitem *item = pq->items; -+ int count = 0; -+ -+ while(item != NULL) -+ { -+ count++; -+ item = item->next; -+ } -+ return count; -+} |