Commit 7bea1caf5 for imagemagick.org

commit 7bea1caf56f388583e380e7cfebffb3d80ec1f94
Author: Cristy <urban-warrior@imagemagick.org>
Date:   Thu Jan 29 21:53:01 2026 -0500

    fix compile exception

diff --git a/MagickCore/utility-private.h b/MagickCore/utility-private.h
index 206d6c8d3..77b98f55c 100644
--- a/MagickCore/utility-private.h
+++ b/MagickCore/utility-private.h
@@ -318,7 +318,7 @@ static inline char *realpath_utf8(const char *path)
       return((char *) NULL);
     }
   full_path=(wchar_t *) AcquireQuantumMemory(full_path_length,sizeof(wchar_t));
-  if (full_path == (wchar_t *) NULL);
+  if (full_path == (wchar_t *) NULL)
     {
       wide_path=(wchar_t *) RelinquishMagickMemory(wide_path);
       return((char *) NULL);