aboutsummaryrefslogtreecommitdiff
path: root/openssl/README
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2006-08-03 16:40:20 +0000
committerRob Austein <sra@hactrn.net>2006-08-03 16:40:20 +0000
commitc1123c0586d9fcb6c26193f5663019fab5d9b960 (patch)
tree8a3bddac89b1da4fdf20aed74ffbaf39f8d175f5 /openssl/README
parent243b4461408b2267a04a5d4778ab28d05eb3ad81 (diff)
*** empty log message ***
svn path=/openssl/README; revision=139
Diffstat (limited to 'openssl/README')
-rw-r--r--openssl/README5
1 files changed, 5 insertions, 0 deletions
diff --git a/openssl/README b/openssl/README
index 7d556d35..15c0e4e4 100644
--- a/openssl/README
+++ b/openssl/README
@@ -273,3 +273,8 @@ Random reminders and notes to myself:
Well, but if we want to report -all- the errors in one pass, we may
need to make temporary copies of the lists (sk_dup()) because that's
the only sane way to check for overlapping/duplicate/adjacent stuff.
+
+ So for each list, we do sk_dup(), sort, compare sorted with
+ unsorted, whine if they differ, walk the sorted list, then free the
+ sorted list. Requires the usual care to avoid memory leaks, but
+ nothing extraordinary.