Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
dev
-
None
-
e4682408b (dev), c2ce67af9 (6.5), ff469d570 (6.6)
Description
Discussion at https://codereview.qt-project.org/c/qt/qtbase/+/479873/comment/8ee81717_079940ee/
The following loop does not terminate before the system runs out of memory:
QString s; while (!s.d.freeSpaceAtBegin()) s.prepend("data");
Looks like it's due to the size of the data being 4. It works with prepend(u'd').