Michael Somos on Thu, 15 Aug 2002 12:47:26 -0400


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

src/gp/gp.c case 'x' no break;


pari-dev,

In the current CVS for "src/gp/gp.c" line 1769 is :

        case 'x': voir(x, get_int(s, -1)); 

which is missing 'break;' and hence falls thru to the next case. We
are lucky here that it is not something serious, but the 'break;'
feature of 'C' is notorious for having this peculiar weakness. Shalom,
Michael