https://bugs.kde.org/show_bug.cgi?id=425469
--- Comment #3 from Jim Jones <[email protected]> --- (In reply to Jim Jones from comment #2) > reverting this code fixes the crash > > - char devnum[64]; > - snprintf(devnum, sizeof(devnum), > "%lu", (unsigned long) dev.index); > - > ca_context_change_device(s_ccontext, devnum); > + const QByteArray devnum = > QByteArray::number(dev.index); > + > ca_context_change_device(s_ccontext, devnum.constData()); this isn't responsible for the crash -- You are receiving this mail because: You are watching all bug changes.
