Skip to content

Commit

Permalink
Fix an insufficient flag value update
Browse files Browse the repository at this point in the history
  • Loading branch information
daijiro committed Jun 18, 2013
1 parent 2ea5c20 commit da50843
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/db.c
Original file line number Diff line number Diff line change
Expand Up @@ -3061,8 +3061,10 @@ grn_table_group(grn_ctx *ctx, grn_obj *table,
}
}
grn_obj_close(ctx, &bulk);
for (r = 0, rp = results; r < n_results; r++, rp++) {
GRN_TABLE_GROUPED_ON(rp->table);
}
}
GRN_TABLE_GROUPED_ON(results->table);
exit :
GRN_API_RETURN(rc);
}
Expand Down

0 comments on commit da50843

Please sign in to comment.