|
One possible fix for the test failure in main.partition_myisam is:
=== modified file 'strings/my_vsnprintf.c'
— strings/my_vsnprintf.c 2012-10-03 22:37:58 +0000
+++ strings/my_vsnprintf.c 2012-10-23 09:59:12 +0000
@@ -676,7 +676,7 @@ size_t my_vsnprintf_ex(CHARSET_INFO *cs,
*to++= ' ';
*to++= '"';
my_strerror(errmsg_buff, sizeof(errmsg_buff), larg);
- to= process_str_arg(cs, to, end, width-3, errmsg_buff, print_type);
+ to= process_str_arg(cs, to, end-1, width-3, errmsg_buff, print_type);
*to++= '"';
}
continue;
The fix passes all tests, but I am not completely sure if this is the right way to fix the problem.
|