Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: copy() returns wrong value for slices of zero-width elements under race detector #8620

Closed
mdempsky opened this issue Aug 30, 2014 · 1 comment

Comments

@mdempsky
Copy link
Contributor

According to the Go spec: "The function copy copies slice elements from a source
src to a destination dst and returns the number of elements copied. [...] The number of
elements copied is the minimum of len(src) and len(dst)."

This is normally handled correctly as demonstrated below, but when the race detector is
enabled, copy() returns 0 instead.  This is because gc switches to using slicecopy(),
which includes a "width == 0" short-circuit test, but then returns
"0" instead of "min(len(src), len(dst))".

(Doesn't seem terribly important, so I'll wait for the next release cycle to send a
patch.  Just wanted to note down the issue so I don't forget it later.)

$ cat copytest.go
package main
import "fmt"
func main() {
        var b [100][0]byte
        s := b[:]
        fmt.Println(len(s), copy(s, s))
}

$ go run copytest.go 
100 100

$ go run -race copytest.go 
100 0
@dvyukov
Copy link
Member

dvyukov commented Aug 30, 2014

Comment 1:

Labels changed: added release-go1.5, repo-main, racedetector.

@bradfitz bradfitz modified the milestone: Go1.5 Dec 16, 2014
@golang golang locked and limited conversation to collaborators Jun 25, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants