summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2021-04-07 13:55:03 -0700
committerJhon Honce <jhonce@redhat.com>2021-04-08 08:59:37 -0700
commit6cc0dc44ecfa6fe328772a3ad946f759ee6d6491 (patch)
tree43e34164d988a2eecb0ab7748602588f55a69c92 /pkg/api/handlers/libpod
parent8c0df1c44a496d30b6e122c4ebc1dae9b5059607 (diff)
downloadpodman-6cc0dc44ecfa6fe328772a3ad946f759ee6d6491.tar.gz
podman-6cc0dc44ecfa6fe328772a3ad946f759ee6d6491.tar.bz2
podman-6cc0dc44ecfa6fe328772a3ad946f759ee6d6491.zip
Add missing return
libpod df handler missing a return after writing error to client. This caused a null to be appended to JSON and crashed python decoder. Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod')
-rw-r--r--pkg/api/handlers/libpod/system.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/system.go b/pkg/api/handlers/libpod/system.go
index 02457eb8f..2b4cef1bb 100644
--- a/pkg/api/handlers/libpod/system.go
+++ b/pkg/api/handlers/libpod/system.go
@@ -72,6 +72,7 @@ func DiskUsage(w http.ResponseWriter, r *http.Request) {
response, err := ic.SystemDf(r.Context(), options)
if err != nil {
utils.InternalServerError(w, err)
+ return
}
utils.WriteResponse(w, http.StatusOK, response)
}