apfs icon indicating copy to clipboard operation
apfs copied to clipboard

Package apfs implements an Apple File System(apfs) bindings for Go

Results 2 apfs issues
Sort by recently updated
recently updated
newest added

I found a memory leak in https://github.com/buildbuddy-io/buildbuddy/pull/2686/files in the way we were calling `C.clonefile`, and was curious if anybody else on GitHub was using the same problematic code pattern. While...

The return value of libc functions like copyfile is not errno, it is a sentinel of either 0 or -1. errno is a separate global variable. It turns out cgo...