From 88b02c54586b940fa9de31f49fb25ded00741a4e Mon Sep 17 00:00:00 2001 From: jyelon Date: Fri, 27 Jun 2025 19:58:39 -0400 Subject: [PATCH] Fix null pointer in lpxserver --- luprex/cpp/core/lpxserver.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/luprex/cpp/core/lpxserver.cpp b/luprex/cpp/core/lpxserver.cpp index de834774..5b191e0d 100644 --- a/luprex/cpp/core/lpxserver.cpp +++ b/luprex/cpp/core/lpxserver.cpp @@ -251,6 +251,7 @@ public: // Check for received invocations. while (handle_invocation(client)); + if (client == nullptr) continue; // Possibly send a diff. double diffdelay = 5.0;