mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
Fix cache corruption due to recorder reuse
Former-commit-id: b37ba1a3d48469613827333e20c9b75e3fd0cc44
This commit is contained in:
parent
02d94041f9
commit
2573a3e940
3
cache/entry/entry.go
vendored
3
cache/entry/entry.go
vendored
|
@ -115,7 +115,8 @@ func (e *Entry) Reset(statusCode int, headers map[string][]string,
|
|||
e.response.headers = newHeaders
|
||||
}
|
||||
|
||||
e.response.body = body
|
||||
e.response.body = make([]byte,len(body))
|
||||
copy(e.response.body, body)
|
||||
// check if a given life changer provided
|
||||
// and if it does then execute the change life time
|
||||
if lifeChanger != nil {
|
||||
|
|
Loading…
Reference in New Issue
Block a user