[Groonga-mysql-commit] mroonga/mroonga [fix-for-visual-studio] don't call function in DBUG_RETURN().

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 4 10:37:49 JST 2012


Kouhei Sutou	2012-02-20 23:58:57 +0900 (Mon, 20 Feb 2012)

  New Revision: 6f704ff8043a19238f169ea3cac0da4df5f1f5f6
  https://github.com/mroonga/mroonga/commit/6f704ff8043a19238f169ea3cac0da4df5f1f5f6

  Merged cce36e4: Merge branch 'master' of github.com:mroonga/mroonga

  Log:
    don't call function in DBUG_RETURN().

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+2 -1)
===================================================================
--- ha_mroonga.cc    2012-02-20 03:30:07 +0900 (4d85780)
+++ ha_mroonga.cc    2012-02-20 23:58:57 +0900 (0eda97f)
@@ -322,7 +322,8 @@ static char *mrn_index_table_name_create(const char *table_name,
   DBUG_ENTER("mrn_index_table_name_create");
   mrn_encode(encode_name, encode_name + MRN_MAX_PATH_SIZE,
              index_name, index_name + strlen(index_name));
-  DBUG_RETURN(mrn_index_table_name_gen(table_name, encode_name, dest));
+  mrn_index_table_name_gen(table_name, encode_name, dest);
+  DBUG_RETURN(dest);
 }
 
 #if !defined(DBUG_OFF) && !defined(_lint)
-------------- next part --------------
HTML����������������������������...
Download 



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