Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(38)

Side by Side Diff: src/pkg/image/gif/reader.go

Issue 4607052: code review 4607052: os.Error API: don't export os.ErrorString, use os.NewEr... (Closed)
Patch Set: diff -r e3c9fecaef4e https://go.googlecode.com/hg/ Created 13 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // Package gif implements a GIF image decoder. 5 // Package gif implements a GIF image decoder.
6 // 6 //
7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt. 7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt.
8 package gif 8 package gif
9 9
10 import ( 10 import (
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 if _, err = io.ReadFull(lzwr, m.Pix); err != nil { 179 if _, err = io.ReadFull(lzwr, m.Pix); err != nil {
180 break 180 break
181 } 181 }
182 182
183 // There should be a "0" block remaining; drain that. 183 // There should be a "0" block remaining; drain that.
184 c, err = d.r.ReadByte() 184 c, err = d.r.ReadByte()
185 if err != nil { 185 if err != nil {
186 return err 186 return err
187 } 187 }
188 if c != 0 { 188 if c != 0 {
189 » » » » return os.ErrorString("gif: extra data after ima ge") 189 » » » » return os.NewError("gif: extra data after image" )
190 } 190 }
191 191
192 // Undo the interlacing if necessary. 192 // Undo the interlacing if necessary.
193 d.uninterlace(m) 193 d.uninterlace(m)
194 194
195 d.image = append(d.image, m) 195 d.image = append(d.image, m)
196 d.delay = append(d.delay, d.delayTime) 196 d.delay = append(d.delay, d.delayTime)
197 d.delayTime = 0 // TODO: is this correct, or should we h old on to the value? 197 d.delayTime = 0 // TODO: is this correct, or should we h old on to the value?
198 198
199 case sTrailer: 199 case sTrailer:
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 var d decoder 412 var d decoder
413 if err := d.decode(r, true); err != nil { 413 if err := d.decode(r, true); err != nil {
414 return image.Config{}, err 414 return image.Config{}, err
415 } 415 }
416 return image.Config{d.globalColorMap, d.width, d.height}, nil 416 return image.Config{d.globalColorMap, d.width, d.height}, nil
417 } 417 }
418 418
419 func init() { 419 func init() {
420 image.RegisterFormat("gif", "GIF8?a", Decode, DecodeConfig) 420 image.RegisterFormat("gif", "GIF8?a", Decode, DecodeConfig)
421 } 421 }
OLDNEW
« no previous file with comments | « src/pkg/http/url.go ('k') | src/pkg/io/io.go » ('j') | src/pkg/io/io.go » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b