mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add to check err
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
This commit is contained in:
parent
1e83886dd5
commit
b4833e3b3d
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ func GetOSVersion() OSVersion {
|
|||
func IsWindowsClient() bool {
|
||||
osviex := &osVersionInfoEx{OSVersionInfoSize: 284}
|
||||
r1, _, err := procGetVersionExW.Call(uintptr(unsafe.Pointer(osviex)))
|
||||
if r1 == 0 {
|
||||
if err != nil || r1 == 0 {
|
||||
logrus.Warnf("GetVersionExW failed - assuming server SKU: %v", err)
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue