Proper delete

This commit is contained in:
obscuren 2014-10-02 17:03:36 +02:00
parent 82be305496
commit b55e017e62

View File

@ -18,7 +18,7 @@ func (self Bytes) String() string {
func DeleteFromByteSlice(s [][]byte, hash []byte) [][]byte {
for i, h := range s {
if bytes.Compare(h, hash) == 0 {
return append(s[:i], s[i+1:]...)
return append(s[:i:i], s[i+1:]...)
}
}