From 7ab4554c41b669b063e1f3c4a4b7f1e262246e0e Mon Sep 17 00:00:00 2001 From: Mohamed Ali Chebbi <56059847+mohamedchebbii@users.noreply.github.com> Date: Thu, 13 Apr 2023 04:56:07 +0200 Subject: [PATCH] Update src/jpgimage.cpp Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- src/jpgimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jpgimage.cpp b/src/jpgimage.cpp index 10264013..70d6f618 100644 --- a/src/jpgimage.cpp +++ b/src/jpgimage.cpp @@ -153,7 +153,7 @@ void JpegBase::readMetadata() { // Read the rest of the segment. DataBuf buf(size); - /// check if the segment is not empty + // check if the segment is not empty if (size > 2) { io_->readOrThrow(buf.data(2), size - 2, ErrorCode::kerFailedToReadImageData); std::copy(sizebuf.begin(), sizebuf.end(), buf.begin());