close body

This commit is contained in:
Christoph Polcin
2014-10-27 16:29:57 +01:00
parent f03693b770
commit 0c00ff98a3
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ func (c *Client) mkcol(path string) int {
if err != nil {
return 400
}
defer rs.Body.Close()
rs.Body.Close()
if rs.StatusCode == 201 || rs.StatusCode == 405 {
return 201
@@ -112,6 +112,6 @@ func (c *Client) put(path string, stream io.Reader) int {
if err != nil {
return 400
}
defer rs.Body.Close()
rs.Body.Close()
return rs.StatusCode
}