Home | History | Annotate | Download | only in time

Lines Matching full:nil

22 		d.p = nil
24 return nil
66 return nil, badData
72 return nil, badData
94 return nil, badData
123 return nil, badData
138 return nil, badData
143 return nil, badData
147 return nil, badData
158 return nil, badData
162 return nil, badData
196 return l, nil
207 if err != nil {
239 if err != nil {
240 return nil, errors.New("open " + zipfile + ": " + err.Error())
254 if err := preadn(fd, buf, -ztailsize); err != nil || get4(buf) != zecheader {
255 return nil, errors.New("corrupt zip file " + zipfile)
262 if err := preadn(fd, buf, off); err != nil {
263 return nil, errors.New("corrupt zip file " + zipfile)
305 return nil, errors.New("unsupported compression for " + name + " in " + zipfile)
325 if err := preadn(fd, buf, off); err != nil ||
330 return nil, errors.New("corrupt zip file " + zipfile)
335 if err := preadn(fd, buf, off+30+namelen+xlen); err != nil {
336 return nil, errors.New("corrupt zip file " + zipfile)
342 return nil, errors.New("cannot find " + name + " in zip file " + zipfile)