hansva opened a new issue, #6154:
URL: https://github.com/apache/hop/issues/6154

   ### Apache Hop version?
   
   2.17.0-SNAPSHOT
   
   ### Java version?
   
   17
   
   ### Operating system
   
   Other
   
   ### What happened?
   
   The following code could get in an infinite loop when the array is 
completely filled:
   
   ```
   / If we are still here, that means that we are ready to put the value down...
       // Where do we need to search for an empty spot in the index?
       //
       int len = index.length;
       while (true) {
         indexPointer++;
         if (indexPointer >= len) {
           indexPointer = 0;
         }
         if (index[indexPointer] == null) {
           break;
         }
       }
   ```
   
   ### Issue Priority
   
   Priority: 2
   
   ### Issue Component
   
   Component: API


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to