summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-09-23 16:27:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-09-23 16:27:10 +0000
commitacf20c7dbde56c0b7c076d5ee08d78a9aa135fea (patch)
treee81b8d96c7befd5f3b841f385d987bf40bba52c8 /CHANGES
parent7c75f462e8754c0cf94a0a3678c47fc10c78a314 (diff)
Add attribute to check if return value of certain functions is incorrectly
ignored.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index fab83ce003..0e347a67b5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,12 @@
Changes between 0.9.8k and 1.0 [xx XXX xxxx]
+ *) New macro __owur for "OpenSSL Warn Unused Result". This makes use of
+ a gcc attribute to warn if the result of a function is ignored. This
+ is enable if DEBUG_UNUSED is set. Add to several functions in evp.h
+ whose return value is often ignored.
+ [Steve Henson]
+
*) The function EVP_PKEY_sign() returns <=0 on error: check return code
correctly.
[Julia Lawall <julia@diku.dk>]