vbox Virtualbox crashes inside Qt library

Hello,
After some updates and installs I cannot use VirtualBox anymore.
I started it with gdb132 and I've got the following backtrace:

Code:
Thread 1 received signal SIGBUS, Bus error.
Object-specific hardware error.

#0  0x00000008043c4576 in QLabel::setText(QString const&) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#1  0x00000008027d1ba3 in UINetworkManagerDialog::retranslateUi() () from /usr/local/lib/virtualbox/UICommon.so
#2  0x00000008027d1e28 in ?? () from /usr/local/lib/virtualbox/UICommon.so
#3  0x000000080382eba1 in QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*) ()
   from /usr/local/lib/qt5/libQt5Core.so.5
#4  0x000000080429d304 in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#5  0x000000080429e7a5 in QApplication::notify(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#6  0x000000080382e97d in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Core.so.5
#7  0x00000008038305f5 in QCoreApplication::installTranslator(QTranslator*) () from /usr/local/lib/qt5/libQt5Core.so.5
#8  0x000000081aa4dda0 in ?? () from /usr/local/lib/libKF5Archive.so.5
#9  0x000000081aa4d993 in ?? () from /usr/local/lib/libKF5Archive.so.5
#10 0x000000080382c0e0 in qAddPreRoutine(void (*)()) () from /usr/local/lib/qt5/libQt5Core.so.5
#11 0x000000081aa4e010 in ?? () from /usr/local/lib/libKF5Archive.so.5
#12 0x000000080041f0ad in ?? () from /libexec/ld-elf.so.1

It is the backtrace that I get after rebuilding the port without NLS support (it was idem with it).
I am on 13.2-RELEASE-p3.

Any ideas?
 
I've got another bt from the same crash after building debug version of the port:

Code:
Thread 1 received signal SIGBUS, Bus error.
Object-specific hardware error.
0x00000008043c4576 in QLabel::setText(QString const&) () from /usr/local/lib/qt5/libQt5Widgets.so.5
(gdb) bt
#0  0x00000008043c4576 in QLabel::setText(QString const&) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#1  0x00000008027d1b93 in UINetworkManagerDialog::retranslateUi (this=0x809415a90)
    at /tmp/usr/ports/emulators/virtualbox-ose/work/VirtualBox-6.1.48/src/VBox/Frontends/VirtualBox/src/net/UINetworkManagerDialog.cpp:156
#2  0x00000008027d1e18 in QIWithRetranslateUI<QMainWindow>::eventFilter (this=0x809415a90, pObject=0x7fffffffe7e0, pEvent=0x7fffffffbe38)
    at src/VBox/Frontends/VirtualBox/src/globals/QIWithRetranslateUI.h:57
#3  0x000000080382eba1 in QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Core.so.5
#4  0x000000080429d304 in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#5  0x000000080429e7a5 in QApplication::notify(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Widgets.so.5
#6  0x000000080382e97d in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /usr/local/lib/qt5/libQt5Core.so.5
#7  0x00000008038305f5 in QCoreApplication::installTranslator(QTranslator*) () from /usr/local/lib/qt5/libQt5Core.so.5
#8  0x000000081aa4dda0 in ?? () from /usr/local/lib/libKF5Archive.so.5
#9  0x000000081aa4d993 in ?? () from /usr/local/lib/libKF5Archive.so.5
#10 0x000000080382c0e0 in qAddPreRoutine(void (*)()) () from /usr/local/lib/qt5/libQt5Core.so.5
#11 0x000000081aa4e010 in ?? () from /usr/local/lib/libKF5Archive.so.5
#12 0x000000080041f0ad in ?? () from /libexec/ld-elf.so.1

I patched QIWithRetranslateUI.h (commented out the line 57), and the problem has gone away.

Should I open a bug anywhere?
 
Back
Top