From a9262868fc689dfda1d3c161553b0bc5eac553ee Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sun, 30 Mar 2025 21:26:14 -0700 Subject: [PATCH] Qt: Use less questionable way of checking for zeroing --- src/platform/qt/ROMInfo.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/platform/qt/ROMInfo.cpp b/src/platform/qt/ROMInfo.cpp index 43be10fe1..e2bd037e5 100644 --- a/src/platform/qt/ROMInfo.cpp +++ b/src/platform/qt/ROMInfo.cpp @@ -15,6 +15,15 @@ using namespace QGBA; +template bool isZeroed(const uint8_t* mem) { + for (size_t i = 0; i < N; ++i) { + if (mem[i]) { + return false; + } + } + return true; +} + ROMInfo::ROMInfo(std::shared_ptr controller, QWidget* parent) : QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint) { @@ -52,7 +61,7 @@ ROMInfo::ROMInfo(std::shared_ptr controller, QWidget* parent) m_ui.crc->setText(tr("(unknown)")); } - if (memcmp(md5, &(const uint8_t[16]) {}, 16) != 0) { + if (!isZeroed<16>(md5)) { m_ui.md5->setText(QString::asprintf("%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", md5[0x0], md5[0x1], md5[0x2], md5[0x3], md5[0x4], md5[0x5], md5[0x6], md5[0x7], md5[0x8], md5[0x9], md5[0xA], md5[0xB], md5[0xC], md5[0xD], md5[0xE], md5[0xF])); @@ -60,7 +69,7 @@ ROMInfo::ROMInfo(std::shared_ptr controller, QWidget* parent) m_ui.md5->setText(tr("(unknown)")); } - if (memcmp(sha1, &(const uint8_t[20]) {}, 20) != 0) { + if (!isZeroed<20>(sha1)) { m_ui.sha1->setText(QString::asprintf("%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", sha1[ 0], sha1[ 1], sha1[ 2], sha1[ 3], sha1[ 4], sha1[ 5], sha1[ 6], sha1[ 7], sha1[ 8], sha1[ 9], sha1[10], sha1[11], sha1[12], sha1[13], sha1[14], sha1[15], sha1[16], sha1[17], sha1[18], sha1[19]));