From be29d5c3ae1502afe3ea4258512cccfcd3758d2a Mon Sep 17 00:00:00 2001 From: Cristy Date: Thu, 29 Jan 2026 21:38:04 -0500 Subject: [PATCH] fix compiler exception --- MagickCore/utility-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MagickCore/utility-private.h b/MagickCore/utility-private.h index 36e609830a..206d6c8d3c 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);