From: Cristy Date: Tue, 5 Jul 2016 12:20:31 +0000 (-0400) Subject: ... X-Git-Tag: 7.0.2-3~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcaf9c53d9084f934212a67ca1ebf5abd2f17bbc;p=imagemagick ... --- diff --git a/MagickWand/mogrify.c b/MagickWand/mogrify.c index 67fef5c5b..e4b4ffc5f 100644 --- a/MagickWand/mogrify.c +++ b/MagickWand/mogrify.c @@ -423,7 +423,7 @@ static MagickBooleanType MonitorProgress(const char *text, return(MagickTrue); if ((offset != (MagickOffsetType) (extent-1)) && ((offset % 50) != 0)) return(MagickTrue); - (void) CopyMagickMemory(tag,text,MagickPathExtent); + (void) CopyMagickString(tag,text,MagickPathExtent); p=strrchr(tag,'/'); if (p != (char *) NULL) *p='\0'; diff --git a/MagickWand/operation.c b/MagickWand/operation.c index 33746d58a..898a55ca8 100644 --- a/MagickWand/operation.c +++ b/MagickWand/operation.c @@ -107,7 +107,7 @@ static MagickBooleanType MonitorProgress(const char *text, return(MagickTrue); if ((offset != (MagickOffsetType) (extent-1)) && ((offset % 50) != 0)) return(MagickTrue); - (void) CopyMagickMemory(tag,text,MagickPathExtent); + (void) CopyMagickString(tag,text,MagickPathExtent); p=strrchr(tag,'/'); if (p != (char *) NULL) *p='\0';