Skip to content
Permalink
Browse files
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
  • Loading branch information
vuvova committed Mar 6, 2019
1 parent 5f105e7 commit 2b4027e
Showing 1 changed file with 1 addition and 1 deletion.
@@ -2591,7 +2591,7 @@ ha_mroonga::~ha_mroonga()
}
if (blob_buffers)
{
delete [] blob_buffers;
::delete [] blob_buffers;
}
grn_obj_unlink(ctx, &top_left_point);
grn_obj_unlink(ctx, &bottom_right_point);

0 comments on commit 2b4027e

Please sign in to comment.