Descriptioncmd/cgo: fix C.CString for strings containing null terminators under gccgo
Previously we used strndup(3) to implement C.CString for gccgo. This
is wrong because strndup assumes the string to be null terminated,
and stops at the first null terminator. Instead, use malloc
and memmove to create a copy of the string, as we do in the
gc implementation.
Patch Set 1 #Patch Set 2 : diff -r e141dda580af https://code.google.com/p/go #MessagesTotal messages: 5
|