From bf865e48c505900676f465e419b64d67a0ffa1eb Mon Sep 17 00:00:00 2001 From: Saxon Date: Sun, 29 Dec 2019 22:50:20 +1030 Subject: [PATCH] codec/mjpeg/jpeg.go: made JFIF header label local const --- codec/mjpeg/jpeg.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codec/mjpeg/jpeg.go b/codec/mjpeg/jpeg.go index 7b51672b..ab7784df 100644 --- a/codec/mjpeg/jpeg.go +++ b/codec/mjpeg/jpeg.go @@ -263,7 +263,8 @@ func writeHeader(p *putBuffer, _type, width, height, nbqTab, dri int, qtable []b // Write JFIF header. mark(p, codeAPP0) p.put16(16) - p.putBuf([]byte("JFIF\000")) + const jfifLabel = "JFIF\000" + p.putBuf([]byte(jfifLabel)) p.put16(0x0201) p.put8(0) p.put16(1)