lgbo-ustc commented on issue #6923:
URL: 
https://github.com/apache/incubator-gluten/issues/6923#issuecomment-2297757525

   > endless loop in here: 
scala.collection.mutable.ArrayBuilder$ofByte.ensureSize
   > 
   > ```scala
   > private def ensureSize(size: Int) {
   >   if (capacity < size || capacity == 0) {
   >     var newsize = if (capacity == 0) 16 else capacity * 2
   >     while (newsize < size) newsize *= 2 // endless loop when newSize * 2 
is greater than int max_value.
   >     resize(newsize)
   >   }
   > }
   > ```
   
   The size is overflow int


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to