Handle empty upload

This commit is contained in:
Andrea Spacca 2018-07-07 09:55:46 +02:00
parent bc694eccbd
commit 163faf569a

View file

@ -397,6 +397,12 @@ func (s *Server) putHandler(w http.ResponseWriter, r *http.Request) {
contentLength = n contentLength = n
} }
if contentLength == 0 {
log.Print("Empty content-length")
http.Error(w, errors.New("Could not uplpoad empty file").Error(), 400)
return
}
contentType := r.Header.Get("Content-Type") contentType := r.Header.Get("Content-Type")
if contentType == "" { if contentType == "" {