Compare the item contentType string using strcmp()

In avifDecoderFindMetadata(), compare the item contentType string using
strcmp() instead of memcmp(). item->contentType.contentType is a
null-terminated string, so the bytes after the terminating null
character are uninitialized.

BUG=oss-fuzz:66848
diff --git a/src/read.c b/src/read.c
index b3eb01e..e1a652b 100644
--- a/src/read.c
+++ b/src/read.c
@@ -33,9 +33,6 @@
 // }
 static const size_t VISUALSAMPLEENTRY_SIZE = 78;
 
-static const char xmpContentType[] = AVIF_CONTENT_TYPE_XMP;
-static const size_t xmpContentTypeSize = sizeof(xmpContentType);
-
 // The only supported ipma box values for both version and flags are [0,1], so there technically
 // can't be more than 4 unique tuples right now.
 #define MAX_IPMA_VERSION_AND_FLAGS_SEEN 4
@@ -1677,7 +1674,7 @@
 
             AVIF_CHECKRES(avifRWDataSet(&image->exif, avifROStreamCurrent(&exifBoxStream), avifROStreamRemainingBytes(&exifBoxStream)));
         } else if (!decoder->ignoreXMP && !memcmp(item->type, "mime", 4) &&
-                   !memcmp(item->contentType.contentType, xmpContentType, xmpContentTypeSize)) {
+                   !strcmp(item->contentType.contentType, AVIF_CONTENT_TYPE_XMP)) {
             avifROData xmpContents;
             avifResult readResult = avifDecoderItemRead(item, decoder->io, &xmpContents, 0, 0, &decoder->diag);
             if (readResult != AVIF_RESULT_OK) {
@@ -3709,7 +3706,7 @@
         avifDecoderItem * xmpItem;
         AVIF_CHECKRES(avifMetaFindOrCreateItem(meta, /*itemID=*/4, &xmpItem));
         memcpy(xmpItem->type, "mime", 4);
-        memcpy(xmpItem->contentType.contentType, xmpContentType, xmpContentTypeSize);
+        memcpy(xmpItem->contentType.contentType, AVIF_CONTENT_TYPE_XMP, sizeof(AVIF_CONTENT_TYPE_XMP));
         xmpItem->descForID = colorItem->id;
         colorItem->premByID = alphaIsPremultiplied;