Files
kubernetes/pkg
Eric Paris 5e22e149c5 Fix usage a make(struct, len()) followed by append()
A couple of places in the code we allocate with make() but then use
append(), instead of copy() or direct assignment. This results in a
slice with len() zero elements at the front followed by the expected
data. The correct form for such usage is `make(struct, 0, len())`.

I found these by running:
```
$ git grep -EI -A7 'make\([^,]*, len\(' | grep 'append(' -B7 | grep -v vendor
```
And then manually looking through the results. I'm sure something better
could exist.
2017-07-31 14:43:29 -04:00
..
2017-07-26 09:51:41 -07:00
2017-06-22 11:31:03 -07:00
2017-07-20 11:03:49 -07:00
2017-07-26 10:56:55 -07:00
2017-07-18 14:34:08 +08:00
2017-06-22 11:31:03 -07:00
2017-07-25 09:01:37 -04:00
2017-07-21 14:29:59 -07:00