Below is the list of changes that have just been committed into a local
4.1 repository of bell. When bell 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.1714 04/03/23 19:24:35 bell@stripped +1 -0
removed unneeded bzero
sql/sql_parse.cc
1.329 04/03/23 19:24:32 bell@stripped +4 -2
removed unneeded bzero
# 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: bell
# Host: sanja.is.com.ua
# Root: /home/bell/mysql/bk/work-alias-4.1
--- 1.328/sql/sql_parse.cc Mon Mar 22 15:42:52 2004
+++ 1.329/sql/sql_parse.cc Tue Mar 23 19:24:32 2004
@@ -2378,8 +2378,10 @@
if (grant_option)
{
TABLE_LIST old_list,new_list;
- bzero((char*) &old_list, sizeof(old_list));
- bzero((char*) &new_list, sizeof(new_list)); // Safety
+ /*
+ we do not need initialize old_list and new_list because we will
+ come table[0] and table->next[0] there
+ */
old_list=table[0];
new_list=table->next[0];
old_list.next=new_list.next=0;
| Thread |
|---|
| • bk commit into 4.1 tree (bell:1.1714) | sanja | 23 Mar |