[Pkg-openssl-changes] r233 - in openssl/trunk: crypto/ocsp debian

kroeckx at alioth.debian.org kroeckx at alioth.debian.org
Sun Sep 2 16:13:59 UTC 2007


Author: kroeckx
Date: 2007-09-02 16:13:59 +0000 (Sun, 02 Sep 2007)
New Revision: 233

Modified:
   openssl/trunk/crypto/ocsp/ocsp.h
   openssl/trunk/debian/changelog
Log:
* Fix another case of the "if this code is reached, the program will abort"
  (Closes: #429740)


Modified: openssl/trunk/crypto/ocsp/ocsp.h
===================================================================
--- openssl/trunk/crypto/ocsp/ocsp.h	2007-09-02 16:12:01 UTC (rev 232)
+++ openssl/trunk/crypto/ocsp/ocsp.h	2007-09-02 16:13:59 UTC (rev 233)
@@ -469,7 +469,7 @@
 ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
 				void *data, STACK_OF(ASN1_OBJECT) *sk);
 #define ASN1_STRING_encode_of(type,s,i2d,data,sk) \
-((ASN1_STRING *(*)(ASN1_STRING *,I2D_OF(type),type *,STACK_OF(ASN1_OBJECT) *))openssl_fcast(ASN1_STRING_encode))(s,i2d,data,sk)
+	ASN1_STRING_encode(s, CHECKED_I2D_OF(type, i2d), data, sk)
 
 X509_EXTENSION *OCSP_crlID_new(char *url, long *n, char *tim);
 

Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog	2007-09-02 16:12:01 UTC (rev 232)
+++ openssl/trunk/debian/changelog	2007-09-02 16:13:59 UTC (rev 233)
@@ -1,3 +1,10 @@
+openssl (0.9.8e-8) unstable; urgency=low
+
+  * Fix another case of the "if this code is reached, the program will abort"
+    (Closes: #429740)
+
+ -- Kurt Roeckx <kurt at roeckx.be>  Sun, 02 Sep 2007 18:12:11 +0200
+
 openssl (0.9.8e-7) unstable; urgency=low
 
   * Fix problems with gcc-4.2 (Closes: #429740)




More information about the Pkg-openssl-changes mailing list