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

Fix another cgo pointer check in xpc_darwin #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jul 7, 2017

  1. Fix another cgo pointer check in xpc_darwin

    This is another place that causes the error:
    panic: runtime error: cgo argument has Go pointer to Go pointer
    
    Reference the rules here: golang/go#12416
    
    Passing a pointer to a slice is seen as passing a Go pointer to C where the Go memory the pointer points to contains another Go pointer. Slices fall into this category. Passing a pointer to the first element in a slice is fair game, however.
    cksmith committed Jul 7, 2017
    Configuration menu
    Copy the full SHA
    354fef9 View commit details
    Browse the repository at this point in the history