mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
250193387c
This workaround for golang/go#15286 was added for Nano server TP5 in
fa82c0aa10
, and should no longer be
needed
Due to a security fix in Go 1.9.4/1.8.7, loading the .dll is no longer
allowed, and produces an error:
.\docker_windows.go:9:3: //go:cgo_import_dynamic main.dummy CommandLineToArgvW%2 "shell32.dll" only allowed in cgo-generated code
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
5 lines
84 B
Go
5 lines
84 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/docker/docker/autogen/winresources/dockerd"
|
|
)
|