Fix off-by-one error
authorTom Tromey <tom@tromey.com>
Fri, 23 Jun 2023 02:34:56 +0000 (20:34 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 23 Jun 2023 02:36:09 +0000 (20:36 -0600)
commit8a269c262e3d0611c01edd915f230bbd2ad78015
tree361da25a0ecfe75f05c97f604533a65e521bf57d
parent52aa69594247ade96e444ae72d17d648f9915821
Fix off-by-one error

Simon pointed out that commit a2bbca9fa5e ("Use std::vector<bool> for
agent_expr::reg_mask") caused a regression in libstdc++ debug mode.
This was due to an off-by-one error in a vector resize.  This patch
fixes the problem.
gdb/ax-general.c