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

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 4 10:30:45 JST 2012


Kouhei Sutou	2011-10-25 12:24:36 +0900 (Tue, 25 Oct 2011)

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

  Log:
    don't process in DBUG_RETURN().

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+2 -1)
===================================================================
--- ha_mroonga.cc    2011-10-25 12:23:05 +0900 (69889ac)
+++ ha_mroonga.cc    2011-10-25 12:24:36 +0900 (0cd6c0f)
@@ -252,7 +252,8 @@ static MYSQL_THDVAR_BOOL(
 static bool mrn_dry_write(THD *thd)
 {
   DBUG_ENTER("mrn_dry_write");
-  DBUG_RETURN(THDVAR(thd, dry_write));
+  bool dry_write_p = THDVAR(thd, dry_write);
+  DBUG_RETURN(dry_write_p);
 }
 
 struct st_mysql_sys_var *mrn_system_variables[] =
-------------- next part --------------
HTML����������������������������...
Télécharger 



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