Merge pull request #3531 from haraldh/fix_ReplySendFile

Fix the double replySendFile()
This commit is contained in:
OpenShift Merge Robot
2019-07-15 21:41:00 +02:00
committed by GitHub

View File

@ -26,11 +26,6 @@ func (i *LibpodAPI) SendFile(call iopodman.VarlinkCall, ftype string, length int
defer outputFile.Close()
if err = call.ReplySendFile(outputFile.Name()); err != nil {
return call.ReplyErrorOccurred(err.Error())
}
// FIXME return parameter
if err = call.ReplySendFile("FIXME_file_handle"); err != nil {
// If an error occurs while sending the reply, return the error
return err
}