Commit Graph

4 Commits (dd4458ce3a82c1e6f7134d746adb5b64d36495e5)

Author SHA1 Message Date
Josh Rickmar 9034717d69 Try to use reflect.SliceHeader correctly this time 2020-05-21 18:50:41 +00:00
Josh Rickmar e04f391ee0 go fmt 2020-04-30 22:26:53 +00:00
Josh Rickmar f0005d4d30 Comment the byte slice conversion 2020-04-30 21:08:15 +00:00
Josh Rickmar f9d3ff6648 Fix incorrect unsafe usage
After checkptr fixes by 2fc6815c, it was discovered that new issues
were hit in production systems, in particular when a single process
opened and updated multiple separate databases.  This indicates that
some bug relating to bad unsafe usage was introduced during this
commit.

This commit combines several attempts at fixing this new issue.  For
example, slices are once again created by slicing an array of "max
allocation" elements, but this time with the cap set to the intended
length.  This operation is espressly permitted according to the Go
wiki, so it should be preferred to type converting a
reflect.SliceHeader.
2020-04-28 20:30:23 +00:00