From 45d64c50324da0023323837fbb9c44f9286ccee2 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Sat, 22 Oct 2022 17:31:38 -0700 Subject: [PATCH] Oops. Missed a NULL return earlier --- src/ffi.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ffi.cpp b/src/ffi.cpp index d76fd3d..7ea3e4e 100644 --- a/src/ffi.cpp +++ b/src/ffi.cpp @@ -725,6 +725,8 @@ extern "C" { signalUnknownError(outError); } #endif + + return NULL; } // --- CXmpDateTime ---