diff --git a/host/src/app.c b/host/src/app.c index 5d910387..7bf9b83d 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -603,7 +603,8 @@ static bool newKVMFRData(KVMFRUserData * dst) .features = os_hasSetCursorPos() ? KVMFR_FEATURE_SETCURSORPOS : 0 }; strncpy(kvmfr.hostver, BUILD_VERSION, sizeof(kvmfr.hostver) - 1); - appendData(dst, &kvmfr, sizeof(kvmfr)); + if (!appendData(dst, &kvmfr, sizeof(kvmfr))) + return false; } {