Commit be29d5c3a for imagemagick.org

commit be29d5c3ae1502afe3ea4258512cccfcd3758d2a
Author: Cristy <urban-warrior@imagemagick.org>
Date:   Thu Jan 29 21:38:04 2026 -0500

    fix compiler exception

diff --git a/MagickCore/utility-private.h b/MagickCore/utility-private.h
index 36e609830..206d6c8d3 100644
--- a/MagickCore/utility-private.h
+++ b/MagickCore/utility-private.h
@@ -304,7 +304,7 @@ static inline char *realpath_utf8(const char *path)
   length=MultiByteToWideChar(CP_UTF8,0,path,-1,NULL,0);
   if (length <= 0)
     return((char *) NULL);
-  wide_path=(wchar_t *) AcquireQuantumMeory(length,sizeof(wchar_t));
+  wide_path=(wchar_t *) AcquireQuantumMemory(length,sizeof(wchar_t));
   if (wide_path == (wchar_t *) NULL)
     return((char *) NULL);
   MultiByteToWideChar(CP_UTF8,0,path,-1,wide_path,length);