mariadb/extra
Sergei Golubchik ed2cc2a8cb Fix YaSSL on windows
This came with the upgrade from yassl 2.3.0 to 2.3.4 -
ssl tests started to hang on Windows. Comparing and removing changes
I've got to this:

 void input_buffer::set_current(uint i) 
 {
-    if (i)
-        check(i - 1, size_); 
-    current_ = i; 
+    if (error_ == 0 && i && check(i - 1, size_) == 0)
+        current_ = i;
+    else
+        error_ = -1;
 }

in 2.3.0 i==0 was only used to avoid the check, in 2.3.4 it's an error.
but there are places in the code that do set_current(0) and others that
do, like, { before=get_current(); ...; set_current(before); } - and the
initial value of current_ is 0.

So, I suspect that set_current(0) should not be an error, but it should
only skip the check().
2014-11-19 22:04:51 +01:00
..
yassl Fix YaSSL on windows 2014-11-19 22:04:51 +01:00
charset2html.c Fix for Bug 16395495 - OLD FSF ADDRESS IN GPL HEADER 2013-03-19 15:53:48 +01:00
CMakeLists.txt Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
comp_err.c mysql-5.5.33 merge 2013-09-06 22:31:30 +02:00
innochecksum.c
my_print_defaults.c MDEV-4068 rpm scriptlet chown command dangerous 2013-03-06 09:32:13 +01:00
mysql_waitpid.c
perror.c MDEV-4941 make: AIX fails with 'Identifier not allowed in cast'; syntax error in include/my_global.h 2013-09-09 19:31:29 +02:00
replace.c Fixed a compiler failure and removed some warnings in windows 2014-03-11 16:53:24 +02:00
resolve_stack_dump.c
resolveip.c