From 93b5927837b75d9660084e83adf04c77a57fe4b3 Mon Sep 17 00:00:00 2001 From: lloyd Date: Fri, 29 Apr 2011 16:59:29 +0000 Subject: Calling &str[str.size()] is only valid if str is const; otherwise the results are undefined. This happens to work under GCC and most other compilers, but does not under Visual C++ 2010. This broke hex_encode when encoding an empty input, and this subsequently broke SSL handshaking. 2010 includes a TR1 that works fine for SSL, but it puts the headers in the main header space rather than under tr1/, so account for that. Hack the socket header into working under WinSock Tick version to 1.10.0 --- botan_version.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'botan_version.py') diff --git a/botan_version.py b/botan_version.py index d3d79a3ad..491cdc204 100644 --- a/botan_version.py +++ b/botan_version.py @@ -1,6 +1,6 @@ release_major = 1 -release_minor = 9 -release_patch = 17 +release_minor = 10 +release_patch = 0 -release_datestamp = 20110429 +release_datestamp = 0 -- cgit v1.2.3