Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 10.0.0
-
Component/s: None
-
Labels:None
Description
merge 10.0-base and 10.0-monty
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
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-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.