← Back to team overview

maria-developers team mailing list archive

Rev 2794: Fixed uninitialized memory in file:///home/bell/maria/bzr/work-maria-5.3-scache2/

 

At file:///home/bell/maria/bzr/work-maria-5.3-scache2/

------------------------------------------------------------
revno: 2794
revision-id: sanja@xxxxxxxxxxxx-20100608120847-v4loj2gdqjflbarv
parent: sanja@xxxxxxxxxxxx-20100608114156-36q3me04ecxh2by6
committer: sanja@xxxxxxxxxxxx
branch nick: work-maria-5.3-scache2
timestamp: Tue 2010-06-08 15:08:47 +0300
message:
  Fixed uninitialized memory
=== modified file 'sql/sql_subquery_cache.cc'
--- a/sql/sql_subquery_cache.cc	2010-06-08 11:41:56 +0000
+++ b/sql/sql_subquery_cache.cc	2010-06-08 12:08:47 +0000
@@ -50,6 +50,7 @@
   tab_ref->null_rejecting= 1;
   tab_ref->disable_cache= FALSE;
   tab_ref->has_record= 0;
+  tab_ref->use_count= 0;
 
   KEY_PART_INFO *cur_key_part= tmp_key->key_part;
   store_key **ref_key= tab_ref->key_copy;