Make kernel detection work without suffix

This commit is contained in:
Guillaume J. Charmes
2013-04-22 18:15:33 -07:00
parent 16aeb77d51
commit c05c91ca3b
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -1,6 +1,7 @@
package docker
import (
"bytes"
"strconv"
"strings"
"syscall"
@@ -26,6 +27,9 @@ func getKernelVersion() (*KernelVersionInfo, error) {
i++
}
// Remove the \x00 from the release for Atoi to parse correctly
release = release[:bytes.IndexByte(release, 0)]
tmp := strings.SplitN(string(release), "-", 2)
tmp2 := strings.SplitN(tmp[0], ".", 3)