Navigation Menu

Skip to content

Commit

Permalink
don't process in DBUG_RETURN().
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 25, 2011
1 parent c52c252 commit b35e3bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ha_mroonga.cc
Expand Up @@ -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[] =
Expand Down

0 comments on commit b35e3bd

Please sign in to comment.