Commit d0df504b authored by unknown's avatar unknown

Fix a crash I introduced by the last push.

parent b4751a93
......@@ -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