Below is the list of changes that have just been committed into a local
4.1 repository of guilhem. When guilhem does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.1547 03/03/21 21:08:56 guilhem@xxxxxxxxx +1 -0
Fix for bug #174 (charset 0 caused segfault)
sql/log_event.cc
1.113 03/03/21 21:08:51 guilhem@xxxxxxxxx +1 -1
Fix for bug #174 (charset 0 caused segfault)
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: guilhem
# Host: gbichot.local
# Root: /home/mysql_src/mysql-4.1
--- 1.112/sql/log_event.cc Thu Mar 20 01:06:05 2003
+++ 1.113/sql/log_event.cc Fri Mar 21 21:08:51 2003
@@ -328,7 +328,7 @@
****************************************************************************/
void Log_event::pack_info(Protocol *protocol)
{
- protocol->store("",0);
+ protocol->store("", &my_charset_bin);
}
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail internals-thread7642@xxxxxxxxxxxxxxx
To unsubscribe, e-mail <internals-unsubscribe@xxxxxxxxxxxxxxx>
|