Details
Description
Hello,
following code reliably causes a stack overflow (in QMoviePrivate::next), while the documentation indicates that jumpToFrame should just return false :
#include <QApplication> #include <QMovie> int main(int argc, char *argv[]) { QApplication a(argc, argv); QMovie movie; movie.setCacheMode(QMovie::CacheAll); movie.jumpToFrame(100); return a.exec(); }