-
Type: Bug
-
Status: Closed
-
Priority: Critical
-
Resolution: Duplicate
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Sprint:DEV-39-3, DEV-39-4, DEV-39-5
-
Affect Type:Userdefined
This issue relates to the crash report №23765, №23750, №23858.
I had 3 crash reports that fell in the same place.
- In the beginning was "foreach"
foreach (Item *item, itemList)
- The macro expanded into a call to the list copy constructor QList<>(const QList<> &)
- Then there was a crash in this constructor (qlist.h : 812):
if (!d->ref.ref())
Apparently d is null.
Will qAsConst help here?
foreach (Item *item, qAsConst(itemList))
- duplicates
-
UGENE-7231 Replace c++ pointer with QPointer in Scheduler
- Open