Hraban Luyat [Sat, 21 Feb 2015 04:13:56 +0000 (04:13 +0000)]
Don't crash when passing empty array
Taking the pointer of an array underlying an empty slice is an error in
go: &ar[0] tries to resolve ar[0], which is out of bounds. Not pretty,
but it makes sense.