Bug-Reported-by: <dnade.ext@orange-ftgroup.com>
Bug-Reference-ID: <728_1312188080_4E3666B0_728_118711_1_3B5D3E0F95CC5C478D6500CDCE8B691F7AAAA4AA3D@PUEXCB2B.nanterre.francetelecom.fr>
Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2011-08/msg00000.html
When in a context where arithmetic evaluation is not taking place, the
evaluator should not check for division by 0.
Patch (apply with `patch -p0'):
*** ../bash-4.2-patched/expr.c 2010-12-21 11:12:13.000000000 -0500
--- ./expr.c 2011-08-02 20:58:28.000000000 -0400
+ if ((op == DIV || op == MOD) && value == 0)
+ evalerror (_("division by 0"));
- evalerror (_("division by 0"));
- evalerror (_("division by 0"));
if (((op == DIV) || (op == MOD)) && (val2 == 0))
! evalerror (_("division by 0"));
if (((op == DIV) || (op == MOD)) && (val2 == 0))
! evalerror (_("division by 0"));