From: cristy Date: Sun, 19 Feb 2012 22:03:21 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~6161 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=52070b4294bf9441fe0dcd49eff53d99cc9ea2be;p=imagemagick --- diff --git a/MagickCore/configure.c b/MagickCore/configure.c index fb687fbfa..cf4179696 100644 --- a/MagickCore/configure.c +++ b/MagickCore/configure.c @@ -584,7 +584,7 @@ MagickExport LinkedListInfo *GetConfigureOptions(const char *filename, { xml=AcquireStringInfo(0); SetStringInfoLength(xml,strlen(blob)+1); - SetStringInfoDatum(xml,blob); + SetStringInfoDatum(xml,(unsigned char *) blob); SetStringInfoPath(xml,filename); (void) AppendValueToLinkedList(options,xml); } diff --git a/MagickCore/locale.c b/MagickCore/locale.c index 93154832b..a84a5d43e 100644 --- a/MagickCore/locale.c +++ b/MagickCore/locale.c @@ -747,7 +747,7 @@ MagickExport LinkedListInfo *GetLocaleOptions(const char *filename, { xml=AcquireStringInfo(0); SetStringInfoLength(xml,strlen(blob)+1); - SetStringInfoDatum(xml,blob); + SetStringInfoDatum(xml,(unsigned char *) blob); SetStringInfoPath(xml,filename); (void) AppendValueToLinkedList(messages,xml); }