daemon: remove not needed unmarshal

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-11-23 12:53:25 +01:00
parent 5afdacb20e
commit 30b8712e93
No known key found for this signature in database
GPG Key ID: B2BEAD150DE936B9
1 changed files with 0 additions and 7 deletions

View File

@ -4,7 +4,6 @@ package daemon
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net"
@ -1281,12 +1280,6 @@ func (daemon *Daemon) setupSeccompProfile() error {
return fmt.Errorf("opening seccomp profile (%s) failed: %v", daemon.configStore.SeccompProfile, err)
}
daemon.seccompProfile = b
p := struct {
DefaultAction string `json:"defaultAction"`
}{}
if err := json.Unmarshal(daemon.seccompProfile, &p); err != nil {
return err
}
}
return nil
}