()
| 41 | } |
| 42 | |
| 43 | func (r *VmReader) ReadByte() (byte, error) { |
| 44 | byte, err := r.reader.ReadByte() |
| 45 | return byte, err |
| 46 | } |
| 47 | |
| 48 | func (r *VmReader) ReadBytes(count int) ([]byte, error) { |
| 49 | // first check to avoid memory attack |
no outgoing calls
no test coverage detected