1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-15 01:34:53 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2017-01-31 13:55:39 -08:00
parent 52fa135fd5
commit c7c4395fbd
3 changed files with 11 additions and 10 deletions

View File

@ -543,9 +543,9 @@ func (c *context) Logger() Logger {
}
func (c *context) Reset(r *http.Request, w http.ResponseWriter) {
c.query = nil
c.store = nil
c.request = r
c.response.reset(w)
c.query = nil
c.handler = NotFoundHandler
c.store = nil
}