filter/Filter: Flush() returns empty span, not nullptr

This commit is contained in:
Max Kellermann
2024-11-05 13:16:28 +01:00
parent d6195025fb
commit bcab29d53a
3 changed files with 3 additions and 3 deletions

View File

@@ -128,7 +128,7 @@ try {
while (true) {
auto dest = filter->Flush();
if (dest.data() == nullptr)
if (dest.empty())
break;
output_fd.FullWrite(dest);
}