This commit is contained in:
Ken Van Hoeylandt 2026-01-05 22:25:18 +01:00
parent 158033af48
commit 22ee68c891
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ public:
auto qrcodeData = std::make_shared<uint8_t[]>(qrcode_getBufferSize(qr_version));
if (qrcodeData == nullptr) {
LOGGER.error("Failed to allocate QR buffer");
stop();
stop(manifest.appId);
return;
}

View File

@ -52,7 +52,7 @@ namespace tt {
if (!(__e)) { \
tt::Logger("Kernel").error("Check failed: {}", #__e); \
if (__m) { \
tt_crash_internal(#__m); \
tt_crash_internal(__m); \
} else { \
tt_crash_internal(""); \
} \