>>>>> "R" == R Lahaye <[EMAIL PROTECTED]> writes:

R> Hi,

R> In xforms_helpers.C, there is the following in function
R> formatted():

R>      string::size_type const nxtpos1 = sin.find(' ', curpos);
R> string::size_type const nxtpos2 = sin.find('\n', curpos);
R> string::size_type const nxtpos = std::min(nxtpos1, nxtpos1);

R> The last line looks suspicious to me. The minimum of the same
R> integers is most probably a typo. I suppose it should be
R> "std::min(nxtpos1, nxtpos2)".

R> If so, attached patch fixes that.

Angus, what is the status of this? The code definitely seems buggy...

JMarc

Reply via email to