Commit 2b4027e6 authored by Sergei Golubchik's avatar Sergei Golubchik

mronga: fix a memory leak

use the correct delete operator

This fixes mroonga/storage.column_generated_stored_add_column failures
in ASAN_OPTIONS="abort_on_error=1" runs
parent 5f105e75
...@@ -2591,7 +2591,7 @@ ha_mroonga::~ha_mroonga() ...@@ -2591,7 +2591,7 @@ ha_mroonga::~ha_mroonga()
} }
if (blob_buffers) if (blob_buffers)
{ {
delete [] blob_buffers; ::delete [] blob_buffers;
} }
grn_obj_unlink(ctx, &top_left_point); grn_obj_unlink(ctx, &top_left_point);
grn_obj_unlink(ctx, &bottom_right_point); grn_obj_unlink(ctx, &bottom_right_point);
......
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