Use memset() rather than ResetMagickMemory()
diff --git a/coders/mvg.c b/coders/mvg.c
index fccf361..6fa3efa 100644
--- a/coders/mvg.c
+++ b/coders/mvg.c
@@ -168,7 +168,7 @@
       /*
         Determine size of image canvas.
       */
-      (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
+      (void) memset(&bounds,0,sizeof(bounds));
       while (ReadBlobString(image,primitive) != (char *) NULL)
       {
         for (p=primitive; (*p == ' ') || (*p == '\t'); p++) ;