• unknown's avatar
    fix problem · 38b2007c
    unknown authored
    Error: Freeing unallocated data at line 900, 'sql_db.cc'
    (
     DROP DATABASE frees thd->db for everything but thd->slave_thread=1
     however we are not slave thread and more bugs could appear if we 
     pretend to be, then we will be good boys and just strdup the value.
     If not DROP DATABASE then THD::~THD() will free the value.
    )
    
    
    sql/event_timed.cc:
      fix problem 
      Error: Freeing unallocated data at line 900, 'sql_db.cc'
      (
       DROP DATABASE frees thd->db for everything but thd->slave_thread=1
       however we are not slave thread and more bugs could appear if we 
       pretend to be, then we will be good boys and just strdup the value.
       If not DROP DATABASE then THD::~THD() will free the value.
      )
      - fix also a bad message
    38b2007c
event_timed.cc 40.7 KB