From ce0c1dc2f8a1f19d0b29e744b79bdac77378ca3c Mon Sep 17 00:00:00 2001 From: David Howden Date: Sun, 24 May 2015 13:13:43 +1000 Subject: [PATCH] Remove append no-op! --- id3v2frames.go | 1 - 1 file changed, 1 deletion(-) diff --git a/id3v2frames.go b/id3v2frames.go index 5db68e8..de59371 100644 --- a/id3v2frames.go +++ b/id3v2frames.go @@ -88,7 +88,6 @@ func dataSplit(b []byte, enc byte) ([][]byte, error) { if result[1][0] == 0 { // there was a double (or triple) 0 and we cut too early - result[0] = append(result[0], make([]byte, 0)...) result[1] = result[1][1:] } return result, nil