summaryrefslogtreecommitdiff
path: root/libpod/sql_state.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/sql_state.go')
-rw-r--r--libpod/sql_state.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/libpod/sql_state.go b/libpod/sql_state.go
index ff04d6d63..f67969cf7 100644
--- a/libpod/sql_state.go
+++ b/libpod/sql_state.go
@@ -920,13 +920,11 @@ func (s *SQLState) RemovePodContainers(pod *Pod) (err error) {
// Remove state first, as it needs the subquery on containers
// Don't bother checking if we actually removed anything, we just want to
// empty the pod
- _, err = tx.Exec(removeCtrState, pod.ID())
- if err != nil {
+ if _, err := tx.Exec(removeCtrState, pod.ID()); err != nil {
return errors.Wrapf(err, "error removing pod %s containers from state table", pod.ID())
}
- _, err = tx.Exec(removeCtr, pod.ID())
- if err != nil {
+ if _, err := tx.Exec(removeCtr, pod.ID()); err != nil {
return errors.Wrapf(err, "error removing pod %s containers from containers table", pod.ID())
}