Uploaded image for project: 'JBRULES'
  1. JBRULES
  2. JBRULES-2296

Infinite loop in OutputMarshaller

This issue belongs to an archived project. You can view it, but you can't modify it. Learn more

    XMLWordPrintable

Details

    Description

      in OutputMarshaller, there are 2 lines containing:
      for ( LeftTuple childLeftTuple = getLeftTuple( leftTuple.getBetaChildren() ); childLeftTuple != null; childLeftTuple = (LeftTuple) leftTuple.getLeftParentPrevious() ) {

      it leads to infinite loop, should be:
      for ( LeftTuple childLeftTuple = getLeftTuple( leftTuple.getBetaChildren() ); childLeftTuple != null; childLeftTuple = (LeftTuple) childLeftTuple.getLeftParentPrevious() ) {

      Attachments

        Activity

          People

            mproctor@redhat.com Mark Proctor
            mproch_jira Maciej Prochniak (Inactive)
            Archiver:
            rhn-support-ceverson Clark Everson

            Dates

              Created:
              Updated:
              Resolved:
              Archived:

              PagerDuty