Lines Matching full:msiz
774 int msiz = ExifLength - (ValuePtr-OffsetBase);
775 if (msiz > ByteCount) msiz = ByteCount;
776 if (msiz > MAX_COMMENT_SIZE - 1) msiz = MAX_COMMENT_SIZE - 1;
777 if (msiz > 5 && memcmp(ValuePtr, "ASCII", 5) == 0) {
778 for (a = 5; a < 10 && a < msiz; a++) {
782 (char *)ValuePtr + a, msiz - a);
787 strncpy(ImageInfo.Comments, (char *)ValuePtr, msiz);