[ROOT] 3.02/06 Windows bug

From: Valeri Fine (fine@bnl.gov)
Date: Sat Dec 29 2001 - 00:34:15 MET


Hello ROOTers
  
A new bug affecting Windows users of ROOT had been introduced with the
last ROOT release.

In method 

Int_t TCint::ProcessLine(const char *line, EErrorCode *error)

instead of 

            if (error) *error = (EErrorCode)local_error;
            gROOT->SetLineHasBeenProcessed();
         }

one needs:

            if (error) *error = (EErrorCode)local_error;
         }
         gROOT->SetLineHasBeenProcessed();

I mean "gROOT->SetLineHasBeenProcessed();" must be out of the brackets.
This bug should cause an erratic behavior of ROOT during Windows interactive 
sessions.

Please fix.

  My best regards and New Year wishes

                 Valeri



This archive was generated by hypermail 2b29 : Tue Jan 01 2002 - 17:51:14 MET