0
0

+ fix goleveldb's BytesSafeAfterClose() on reader

- it should be set to false
This commit is contained in:
indraniel 2015-04-10 15:45:22 -05:00
parent a2b7740db7
commit a62320a50e

View File

@ -28,7 +28,7 @@ func newReader(store *Store) (*Reader, error) {
} }
func (r *Reader) BytesSafeAfterClose() bool { func (r *Reader) BytesSafeAfterClose() bool {
return true return false
} }
func (r *Reader) Get(key []byte) ([]byte, error) { func (r *Reader) Get(key []byte) ([]byte, error) {