Navigation Menu

Skip to content

Commit

Permalink
mariadb10.3.4: make buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 26, 2018
1 parent c795fb7 commit b494a85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.cpp
Expand Up @@ -2698,7 +2698,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);
Expand Down Expand Up @@ -4873,9 +4873,9 @@ int ha_mroonga::storage_open_columns(void)
{
if (blob_buffers)
{
delete [] blob_buffers;
::delete [] blob_buffers;
}
if (!(blob_buffers = new String[n_columns]))
if (!(blob_buffers = ::new String[n_columns]))
{
DBUG_RETURN(HA_ERR_OUT_OF_MEM);
}
Expand Down

0 comments on commit b494a85

Please sign in to comment.