From d937d2f42e65c0917c77ecb616e3bb0ad8d504b8 Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Mon, 16 Feb 2026 10:37:49 -0700 Subject: [PATCH] fix: Qt5 compat - fix ambiguous QByteRef comparison in test_windbg_provider --- tests/test_windbg_provider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_windbg_provider.cpp b/tests/test_windbg_provider.cpp index 337f250..2b38bf8 100644 --- a/tests/test_windbg_provider.cpp +++ b/tests/test_windbg_provider.cpp @@ -325,7 +325,7 @@ private slots: // Verify it's not all zeros (the old failure mode) bool allZero = true; for (int i = 0; i < data.size(); ++i) { - if (data[i] != 0) { allZero = false; break; } + if (data[i] != '\0') { allZero = false; break; } } QVERIFY2(!allZero, "Data is all zeros — background thread read failed"); }