Commit 88603a0e authored by konstantin@mysql.com's avatar konstantin@mysql.com

Fix a crash I introduced by the last push.

parent 23f964b9
......@@ -2447,7 +2447,8 @@ Prepared_statement::~Prepared_statement()
if (cursor)
cursor->Cursor::~Cursor();
free_items();
free_root(cursor->mem_root, MYF(0));
if (cursor)
free_root(cursor->mem_root, MYF(0));
delete lex->result;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment