You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Item returns pointer to the current key-value pair. This item is only valid until it.Next() gets called.
In my opinion in this situation the item is only valid until the next iteration therefore key is illegaly reused. KeyCopy should be used instead. It is possible that txn.Delete(...) will remove other data. I imagine this is the case in other places in the code as well.
The text was updated successfully, but these errors were encountered:
Method
Key
Usages in All Places (7 usages found)
Unclassified (7 usages found)
go-ssb (6 usages found)
graph (4 usages found)
builder.go (4 usages found)
Build (1 usage found)
143 k := it.Key()
DeleteAuthor (1 usage found)
108 k := it.Key()
Follows (1 usage found)
265 k := it.Key()
Subfeeds (1 usage found)
339 k := it.Key()
plugins2/names (2 usages found)
about.go (2 usages found)
All (1 usage found)
99 k := it.Key()
CollectedFor (1 usage found)
163 k := it.Key()
/home/filip/go/pkg/mod/github.com/ssbc/[email protected]/internal/persist/badger (1 usage found)
saver.go (1 usage found)
List (1 usage found)
107 k := it.Key()
I can see that the key is being taken out of the transaction and stored in a slice in margaret. If I am correct about this then this could be a source of really weird bugs.
In my opinion code such as this is incorrect:
go-ssb/graph/builder.go
Lines 105 to 112 in 2cdd828
Reasoning:
https://pkg.go.dev/github.com/dgraph-io/badger/v3#Item.Key:
https://pkg.go.dev/github.com/dgraph-io/badger/v3#Iterator.Item:
In my opinion in this situation the item is only valid until the next iteration therefore key is illegaly reused.
KeyCopy
should be used instead. It is possible thattxn.Delete(...)
will remove other data. I imagine this is the case in other places in the code as well.The text was updated successfully, but these errors were encountered: