[Groonga-mysql-commit] mroonga/mroonga at b494a85 [master] mariadb10.3.4: make buildable

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Jan 26 12:54:06 JST 2018


Kouhei Sutou	2018-01-26 12:54:06 +0900 (Fri, 26 Jan 2018)

  New Revision: b494a855f9ac59d662bd17dbbbe3b4f4213e6a86
  https://github.com/mroonga/mroonga/commit/b494a855f9ac59d662bd17dbbbe3b4f4213e6a86

  Message:
    mariadb10.3.4: make buildable

  Modified files:
    ha_mroonga.cpp

  Modified: ha_mroonga.cpp (+3 -3)
===================================================================
--- ha_mroonga.cpp    2018-01-26 11:45:42 +0900 (b1cfe08e)
+++ ha_mroonga.cpp    2018-01-26 12:54:06 +0900 (9e27ed30)
@@ -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);
@@ -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);
     }
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20180126/56bf9d80/attachment-0001.htm 



More information about the Groonga-mysql-commit mailing list
Back to archive index